3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-05-20 08:11:47 +00:00
coope/users/admin.py

8 lines
157 B
Python

from django.contrib import admin
from .models import School, Profile
admin.site.register(School)
admin.site.register(Profile)
# Register your models here.