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