mirror of
https://github.com/nanoy42/coope
synced 2024-11-04 17:06:27 +00:00
9 lines
No EOL
267 B
Python
9 lines
No EOL
267 B
Python
from django.contrib import admin
|
|
from django.contrib.auth.models import Permission
|
|
|
|
from .models import School, Profile, CotisationHistory
|
|
|
|
admin.site.register(Permission)
|
|
admin.site.register(School)
|
|
admin.site.register(Profile)
|
|
admin.site.register(CotisationHistory) |