diff options
Diffstat (limited to 'app/links/urls.py')
-rw-r--r-- | app/links/urls.py | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app/links/urls.py b/app/links/urls.py new file mode 100644 index 0000000..fb18532 --- /dev/null +++ b/app/links/urls.py @@ -0,0 +1,39 @@ +from django.urls import path, re_path + +from . import views + +app_name = "links" + +urlpatterns = [ + re_path( + r'^(?P<year>\d{4})/(?P<month>\d{2})/(?P<slug>[-\w]+).txt$', + views.EntryDetailViewTXT.as_view(), + name="detail-txt" + ), + re_path( + r'^(?P<year>\d{4})/(?P<month>\d{2})/(?P<slug>[-\w]+)$', + views.EntryDetailView.as_view(), + name="detail" + ), + re_path( + r'^(?P<year>[0-9]{4})/(?P<month>[0-9]{2})/$', + views.EntryMonthArchiveView.as_view(month_format='%m'), + name="list_month" + ), + re_path( + r'(?P<year>\d{4})/$', + views.EntryYearArchiveView.as_view(), + name="list_year" + ), + re_path( + r'^(?P<page>\d+)/$', + views.EntryListView.as_view(), + name="list" + ), + re_path( + r'', + views.EntryListView.as_view(), + {'page': 1}, + name="list" + ), +] |