Guest User

Untitled

a guest
Mar 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. from django.contrib import admin
  2.  
  3. from .models import Report
  4.  
  5.  
  6. @admin.register(Report)
  7. class ReportAdmin(admin.ModelAdmin):
  8. search_fields = ['title']
  9. list_display = ('title','date')
Add Comment
Please, Sign In to add comment