customize the list view in the django admin
This commit is contained in:
parent
39290fb63c
commit
7baa70d8f6
@ -5,4 +5,10 @@ from django.contrib import admin
|
|||||||
from countdown.models import CountdownItem
|
from countdown.models import CountdownItem
|
||||||
|
|
||||||
|
|
||||||
admin.site.register(CountdownItem)
|
class CountdownItemAdmin(admin.ModelAdmin):
|
||||||
|
"""Custom display for the countdown items."""
|
||||||
|
|
||||||
|
list_display = ('__str__', 'reminder_message')
|
||||||
|
|
||||||
|
|
||||||
|
admin.site.register(CountdownItem, CountdownItemAdmin)
|
||||||
|
Loading…
Reference in New Issue
Block a user