Another year/month links fix

This commit is contained in:
2022-11-03 19:32:01 +03:00
parent 9fccb5e66f
commit eeef11bfa5
2 changed files with 1 additions and 6 deletions
-1
View File
@@ -5,7 +5,6 @@ from . import views
urlpatterns = [
path('', views.index, name='index'),
path('<int:year>/', views.year_page, name='index'),
path('<int:year>/<int:month>/', views.month_page, name='index'),
path('<int:year>/<int:month>/<int:day>/', views.day_page, name='index'),
]