3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-09-11 17:43:08 +00:00
coope/users/admin.py

8 lines
157 B
Python
Raw Normal View History

2018-08-31 12:46:35 +00:00
from django.contrib import admin
from .models import School, Profile
admin.site.register(School)
admin.site.register(Profile)
2018-08-31 12:46:35 +00:00
# Register your models here.