Базовая карта

This commit is contained in:
2022-04-21 15:28:52 +03:00
parent 3f44f8fc2f
commit 8cd72996cb
63 changed files with 175 additions and 5 deletions

8
wheretogo/maps/urls.py Normal file
View File

@@ -0,0 +1,8 @@
from django.urls import path
from maps.views import MapView
app_name = "maps"
urlpatterns = [
path("map/", MapView.as_view(), name="map"),
]