friendsmap/map/urls.py

9 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'),
]