summaryrefslogtreecommitdiff
path: root/app/podcasts/urls.py
blob: 792388b0ed0ad4f2de4c160c6fbe7facad503fb1 (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.EpisodeListView.as_view(),
        name="list"
    ),
    path(
        r'<str:slug>/',
        views.EpisodeListView.as_view(),
        {'page':1}, 
        name="list"
    ),
    path(
        r'<str:slug>/episode/<int:page>',
        views.PodcastDetailView.as_view(),
        name="detail"
    ),
]