orfplayer/frontend/urls.py

10 lines
345 B
Python
Raw Permalink Normal View History

2022-05-10 12:26:31 +00:00
from django.urls import path
from .views import LiveStationView, StationProxyView, IndexView
urlpatterns = [
path("station/<slug:station>", LiveStationView.as_view(), name="stationlive"),
path("station/<slug:station>/<str:filename>", StationProxyView.as_view(), name="stationproxy"),
path("", IndexView.as_view(), name="index"),
]