impuls/website/admin.py

5 lines
125 B
Python
Raw Normal View History

2023-10-03 17:55:41 +02:00
from django.contrib import admin
from .models import Registrant
2023-10-03 17:55:41 +02:00
# Register your models here.
admin.site.register(Registrant)