9 lines
169 B
Python
9 lines
169 B
Python
|
"""Manage countdown models in the admin interface."""
|
||
|
|
||
|
from django.contrib import admin
|
||
|
|
||
|
from countdown.models import CountdownItem
|
||
|
|
||
|
|
||
|
admin.site.register(CountdownItem)
|