ADD: dav_event_office: start work on an optimized interface for the

office.
This commit is contained in:
2019-06-28 15:48:04 +02:00
parent 862d39b84c
commit 700cec49d0
12 changed files with 276 additions and 0 deletions

9
dav_event_office/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^home$', views.HomeView.as_view(), name='root'),
url(r'^$', views.EventListView.as_view(), name='event-list'),
url(r'^(?P<pk>\d+)/', views.EventDetailView.as_view(), name='event-detail'),
]