mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-10 16:23:23 +00:00
9 lines
160 B
Python
9 lines
160 B
Python
from django.contrib import admin
|
|
|
|
from subscription.models import Subscriber, Subscription
|
|
|
|
|
|
|
|
admin.site.register(Subscriber)
|
|
admin.site.register(Subscription)
|