Blame view

src/scheduler/urls.py 324 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
urlpatterns = [
3dbda6a0   haribo   Date: 17/06/2016
8
9
            url(r'^$', views.current_schedule, name="current_schedule"),
            url(r'^simulation$', views.schedule_simulation, name="schedule_simulation"),
715fabb7   haribo   #3430 (100%)
10
              ]