7 lines
155 B
Python
7 lines
155 B
Python
from django.contrib import admin
|
|
from leaflet.admin import LeafletGeoAdmin
|
|
|
|
from .models import CaseStudy
|
|
|
|
admin.site.register(CaseStudy, LeafletGeoAdmin)
|