13 lines
281 B
Python
13 lines
281 B
Python
from django.urls import path
|
|
from .views import MapView
|
|
from django.contrib.auth.decorators import login_required
|
|
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"maps/leaflet/",
|
|
login_required( MapView.as_view(template_name="maps_leaflet.html")),
|
|
name="maps-leaflet",
|
|
),
|
|
]
|