6 lines
147 B
Python
6 lines
147 B
Python
from django.contrib import admin
|
|
|
|
from .models import Event, Participants
|
|
|
|
# Add event by admin page return a 502 error
|
|
admin.site.register(Event)
|