2015-06-18 09:19:53 -05:00
|
|
|
"""Manage countdown models in the admin interface."""
|
|
|
|
|
|
|
|
from django.contrib import admin
|
|
|
|
|
|
|
|
from countdown.models import CountdownItem
|
|
|
|
|
|
|
|
|
2022-09-22 08:01:23 -05:00
|
|
|
class CountdownItemAdmin(admin.ModelAdmin):
|
|
|
|
"""Custom display for the countdown items."""
|
|
|
|
|
|
|
|
list_display = ('__str__', 'reminder_message')
|
|
|
|
|
|
|
|
|
|
|
|
admin.site.register(CountdownItem, CountdownItemAdmin)
|