adding gamechanger, in progress

This commit is contained in:
2022-06-07 16:55:02 -05:00
parent 42d5c452e7
commit 82e77b9e6f
19 changed files with 337 additions and 28 deletions

6
gamechanger/admin.py Normal file
View File

@@ -0,0 +1,6 @@
from django.contrib import admin
from .models import Account, Preferences
# Register your models here.
admin.site.register(Account)
admin.site.register(Preferences)