8 lines
218 B
Python
8 lines
218 B
Python
from django.urls import path
|
|
|
|
from map import views
|
|
|
|
urlpatterns = [
|
|
path('', views.MapView.as_view(), name='map'),
|
|
path('change-location/<int:pk>', views.EditLocationView.as_view(), name='change-location'),
|
|
]
|