|
@@ -7,6 +7,8 @@ register_converter(converters.FourDigitYearConverter, "year4")
|
|
|
|
|
|
urlpatterns = [
|
|
urlpatterns = [
|
|
path('', views.index), # http://127.0.0.1:8000
|
|
path('', views.index), # http://127.0.0.1:8000
|
|
|
|
+ # path('details/', views.post_detail),
|
|
|
|
+ path('posts/<int:year>', views.posts_list),
|
|
path('cats/<int:cat_id>/', views.categories), # http://127.0.0.1:8000/cats/1/
|
|
path('cats/<int:cat_id>/', views.categories), # http://127.0.0.1:8000/cats/1/
|
|
path('cats/<slug:cat_slug>/', views.categories_by_slug), # http://127.0.0.1:8000/cats/asdfad/
|
|
path('cats/<slug:cat_slug>/', views.categories_by_slug), # http://127.0.0.1:8000/cats/asdfad/
|
|
# re_path(r"^archive/(?P<year>[0-9]{4})", views.archive),
|
|
# re_path(r"^archive/(?P<year>[0-9]{4})", views.archive),
|