summaryrefslogtreecommitdiff
path: root/app/sketches/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/sketches/urls.py')
-rw-r--r--app/sketches/urls.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/sketches/urls.py b/app/sketches/urls.py
index 7f4c915..465a0d2 100644
--- a/app/sketches/urls.py
+++ b/app/sketches/urls.py
@@ -11,13 +11,13 @@ urlpatterns = [
name="list_year"
),
path(
- r'',
+ r'',
views.SketchListView.as_view(),
- {'page':1},
+ {'page': 1},
name="list"
),
path(
- r'(?P<page>\d+)/$',
+ r'<int:page>/',
views.SketchListView.as_view(),
name="list"
),