urls.py
454 Bytes
from django.urls import include, path # For django versions from 2.0 and up
from . import views
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
path('', views.current_schedule, name="current_schedule"),
path('retrieve_schedule', views.retrieve_schedule, name="retrieve_schedule"),
path('simulation', views.schedule_simulation, name="schedule_simulation"),
]