blob: f4e39ea557ba2ca052f1ebb3c767deb6c91c3e48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
from django.urls import path, re_path
from . import views
app_name = "podcasts"
urlpatterns = [
re_path(
r'<str:slug>/<int:page>',
views.PodcastListView.as_view(),
name="list"
),
path(
r'<str:slug>/',
views.PodcastListView.as_view(),
{'page':1},
name="list"
),
path(
r'<str:slug>/episode/<int:page>',
views.PodcastDetailView.as_view(),
name="detail"
),
]
|