Guest User

Untitled

a guest
May 23rd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. from agro.models import *
  2. from agro.sources import *
  3. from django.contrib import admin
  4.  
  5. class EntryAdmin(admin.ModelAdmin):
  6. list_display = ('title', 'url',)
  7. list_filter = ('source_type',)
  8. date_hierarchy = 'timestamp'
  9.  
  10. admin.site.register(Entry, EntryAdmin)
  11.  
  12. import_source_modules(class_name='Admin')
Add Comment
Please, Sign In to add comment