10 lines
217 B
Python
10 lines
217 B
Python
"""Manage dispatch models in the admin interface."""
|
|
|
|
from django.contrib import admin
|
|
|
|
from dispatch.models import Dispatcher, DispatcherAction
|
|
|
|
|
|
admin.site.register(Dispatcher)
|
|
admin.site.register(DispatcherAction)
|