Blame view

src/scheduler/urls.py 194 Bytes
715fabb7   haribo   #3430 (100%)
1
2
3
4
5
6
7
from django.conf.urls import url
from . import views

urlpatterns = [
            url(r'^$', views.current_schedule),
            url(r'^simulation$', views.schedule_simulation),
              ]