fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
1c0e46c48b185880992501b0c82c98ff8b4998d2
[wolnelektury.git]
/
src
/
references
/
urls.py
1
from django.urls import path, re_path
2
from . import views
3
4
5
urlpatterns = [
6
path('mapa/', views.pin_map),
7
re_path(r'^mapa/(?P<tags>[a-zA-Z0-9-/]*)/$', views.pin_map_tagged),
8
path('popup/<int:pk>', views.popup),
9
]