StudE-Backend/stude/landmarks/admin.py

6 lines
152 B
Python
Raw Permalink Normal View History

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