summaryrefslogtreecommitdiff
path: root/app/podcasts/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/podcasts/urls.py')
-rw-r--r--app/podcasts/urls.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/podcasts/urls.py b/app/podcasts/urls.py
index 622b203..f4e39ea 100644
--- a/app/podcasts/urls.py
+++ b/app/podcasts/urls.py
@@ -16,4 +16,9 @@ urlpatterns = [
{'page':1},
name="list"
),
+ path(
+ r'<str:slug>/episode/<int:page>',
+ views.PodcastDetailView.as_view(),
+ name="detail"
+ ),
]