diff options
Diffstat (limited to 'app/sketches')
-rw-r--r-- | app/sketches/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/sketches/urls.py b/app/sketches/urls.py index 6554cef..7f4c915 100644 --- a/app/sketches/urls.py +++ b/app/sketches/urls.py @@ -17,7 +17,7 @@ urlpatterns = [ name="list" ), path( - r'<int:page>/', + r'(?P<page>\d+)/$', views.SketchListView.as_view(), name="list" ), |