kpsul/clubs/admin.py
Martin Pépin 380e38519b
New app: clubs
- Clubs will be used both by the cof and the bds app.
- For now, they are only visible in development.
2019-10-16 19:58:12 +02:00

6 lines
91 B
Python

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