Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. from django.contrib import admin
  2. # Register your models here.
  3. from . models import complain
  4.  
  5. class complainAdmin(admin.ModelAdmin):
  6. list_display = ('name', 'email', 'message')
  7.  
  8. admin.site.register(complain, complainAdmin)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement