5 lines
116 B
Python

from django.contrib import admin
from .models import Club, Team
admin.site.register(Club)
admin.site.register(Team)