Map update.
[wolnelektury.git] / src / references / urls.py
1 from django.urls import path, re_path
2 from . import views
3
4
5 urlpatterns = [
6     path('', views.pin_map),
7     path('popup/<int:pk>', views.popup),
8     re_path(r'^(?P<tags>[a-zA-Z0-9-/]*)/$', views.pin_map_tagged),
9 ]