Temp admin setup

This commit is contained in:
Ludovic Stephan 2020-11-20 17:45:59 +01:00
parent 38251ba37e
commit 29dc3a64f3

12
elections/admin.py Normal file
View file

@ -0,0 +1,12 @@
from django.contrib import admin
from django.apps import apps
# FIXME: this is a temp workaround to help for development
models = apps.get_models()
for model in models:
try:
admin.site.register(model)
except admin.sites.AlreadyRegistered:
pass