Blame view

src/scheduler/urls.py 271 Bytes
715fabb7   haribo   #3430 (100%)
1
2
3
from django.conf.urls import url
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
8
9
10
urlpatterns = [
            url(r'^$', views.current_schedule),
            url(r'^simulation$', views.schedule_simulation),
              ]