created benchcoachproject app to contain all the settings and stuff some other changes that got grouped with this commit is the adding the ApiObject to the TeamSnap object model
7 lines
176 B
Python
7 lines
176 B
Python
from django.contrib import admin
|
|
from .models import Profile, TeamsnapSettings
|
|
|
|
# Register your models here.
|
|
admin.site.register(Profile)
|
|
admin.site.register(TeamsnapSettings)
|