mirror of
https://github.com/nanoy42/coope
synced 2024-11-05 01:16:28 +00:00
8 lines
215 B
Python
8 lines
215 B
Python
from django.contrib import admin
|
|
|
|
from .models import School, Profile, CotisationHistory
|
|
|
|
admin.site.register(School)
|
|
admin.site.register(Profile)
|
|
admin.site.register(CotisationHistory)
|
|
# Register your models here.
|