fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
upgrade
[wolnelektury.git]
/
src
/
stats
/
urls.py
1
from django.urls import path
2
from . import views
3
4
5
urlpatterns = [
6
path('top/', views.TopView.as_view(), name='stats_top'),
7
path('top/daily/', views.DailyTopView.as_view(), name='stats_top'),
8
]