gault-millau/apps/timetable/urls/common.py
2019-10-16 20:56:56 +03:00

10 lines
199 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')
]