implement lineup send to gamechanger

This commit is contained in:
2022-06-08 14:08:33 -05:00
parent 50c9b70546
commit f788fb9932
21 changed files with 409 additions and 82 deletions

View File

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