Blame view

src/core/pyros_django/scheduler/urls.py 454 Bytes
860aa416   Alexis Koralewski   Adding new versio...
1
from django.urls import include, path  # For django versions from 2.0 and up
715fabb7   haribo   #3430 (100%)
2
3
from . import views

5b5566ab   haribo   added celery
4
5
6
from django.conf import settings
from django.conf.urls.static import static

715fabb7   haribo   #3430 (100%)
7
urlpatterns = [
860aa416   Alexis Koralewski   Adding new versio...
8
9
10
            path('', views.current_schedule, name="current_schedule"),
            path('retrieve_schedule', views.retrieve_schedule, name="retrieve_schedule"),
            path('simulation', views.schedule_simulation, name="schedule_simulation"),
715fabb7   haribo   #3430 (100%)
11
              ]