blob: 622b203ebdfb13f7a408315243ad07ba737e8b55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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"
),
]
|