mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 10:45:27 +00:00
9 lines
244 B
Python
9 lines
244 B
Python
from django.urls import path
|
|
from .views import EPGDashboardView, epg_view
|
|
|
|
app_name = 'epg_dashboard'
|
|
|
|
urlpatterns = [
|
|
path('dashboard/', EPGDashboardView.as_view(), name='epg_dashboard'),
|
|
path('guide/', epg_view, name='epg_guide'),
|
|
]
|