diff options
Diffstat (limited to 'app/lttr/urls.py')
-rw-r--r-- | app/lttr/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lttr/urls.py b/app/lttr/urls.py index e7640c7..05febe3 100644 --- a/app/lttr/urls.py +++ b/app/lttr/urls.py @@ -6,7 +6,7 @@ app_name = "lttr" urlpatterns = [ path( - r'<int:year>/<int:month>/<str:slug>', + r'<str:slug>/<int:issue>/<str:mailing>', views.NewsletterMailingDetail.as_view(), name="detail" ), |