ernestophone.ens.fr/calendrier/admin.py

8 lines
181 B
Python
Raw Normal View History

2021-08-09 12:41:44 +02:00
from django.contrib import admin
2021-10-23 11:16:07 +02:00
from .models import Event, Participants
# Add event by admin page return a 502 error
2021-08-09 12:41:44 +02:00
admin.site.register(Event)
2021-10-23 11:16:07 +02:00
admin.site.register(Participants)