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