friendsmap/map/urls.py

9 lines
218 B
Python
Raw Normal View History

2019-03-02 12:47:44 +01:00
from django.urls import path
2019-03-02 16:17:48 +01:00
2019-03-02 12:47:44 +01:00
from map import views
urlpatterns = [
2019-03-02 15:36:52 +01:00
path('', views.MapView.as_view(), name='map'),
2019-03-02 16:17:48 +01:00
path('change-location/<int:pk>', views.EditLocationView.as_view(), name='change-location'),
2019-03-02 12:47:44 +01:00
]