StudE-Backend/stude/study_groups/admin.py

6 lines
157 B
Python

from django.contrib import admin
from .models import StudyGroup
from leaflet.admin import LeafletGeoAdmin
admin.site.register(StudyGroup, LeafletGeoAdmin)