Files
benchcoach-django/benchcoach/admin.py
2021-12-13 07:35:01 -06:00

6 lines
120 B
Python

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