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