fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Remove legacy search.
[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
]