poli_planning/polyclinic_scheduling/apps/schedule/urls.py

9 lines
216 B
Python
Raw Normal View History

2020-05-13 15:54:40 +02:00
from django.urls import path, include
from . import views
app_name = 'schedule'
urlpatterns = [
path('', views.ScheduleListView.as_view(), name='list'),
path('new', views.new_or_update_study, name='new'),
]