|
|
|
|
@ -39,7 +39,7 @@ urlpatterns = [
|
|
|
|
|
|
|
|
|
|
path(r'tag/<slug:tag_name>.html', views.TagDetailView.as_view(), name='tag_detail'),
|
|
|
|
|
path(r'tag/<slug:tag_name>/<int:page>.html', views.TagDetailView.as_view(), name='tag_detail_page'),
|
|
|
|
|
path('archives.html', views.ArchivesView.as_view(), name='archives'),
|
|
|
|
|
path('archives.html', cache_page(60 * 60)(views.ArchivesView.as_view()), name='archives'),
|
|
|
|
|
path('links.html', views.LinkListView.as_view(), name='links'),
|
|
|
|
|
path(r'upload', views.fileupload, name='upload'),
|
|
|
|
|
path(r'refresh', views.refresh_memcache, name='refresh')
|
|
|
|
|
|