19 lines
499 B
Python
19 lines
499 B
Python
from django.contrib import admin
|
|
|
|
from .models import Entry, EntryTag
|
|
|
|
|
|
@admin.register(EntryTag)
|
|
class EntryTagAdmin(admin.ModelAdmin):
|
|
prepopulated_fields = {'slug': ('label',)}
|
|
|
|
|
|
|
|
@admin.register(Entry)
|
|
class EntryAdmin(admin.ModelAdmin):
|
|
list_display = ('pub_date', 'headline', 'author')
|
|
list_filter = ['pub_date']
|
|
date_hierarchy = 'pub_date'
|
|
search_fields = ['headline', 'summary', 'body']
|
|
prepopulated_fields = {'slug': ("headline",)}
|
|
filter_horizontal = ('tags',)
|