summaryrefslogtreecommitdiff
path: root/app/sketches/urls.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2018-02-06 10:36:26 -0600
committerluxagraf <sng@luxagraf.net>2018-02-06 10:36:26 -0600
commit58473dd4e0758894f15f834bddedd0caf11cfa59 (patch)
tree6f4d4fb9e120813bcbaaf03044fdb84eb7764c41 /app/sketches/urls.py
parentadcd4671a261aa72d459b691aabb6f2eef2a0cb7 (diff)
converted to new path url structure and updated pagination to handle it.
Diffstat (limited to 'app/sketches/urls.py')
-rw-r--r--app/sketches/urls.py2
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"
),