gault-millau/apps/timetable/urls.py

10 lines
197 B
Python

"""Timetable app common urlconf."""
from django.urls import path
from timetable import views
app_name = 'timetable'
urlpatterns = [
path('', views.TimetableListView.as_view(), name='list')
]