summaryrefslogtreecommitdiffstats
path: root/src/pharos_dashboard
diff options
context:
space:
mode:
Diffstat (limited to 'src/pharos_dashboard')
-rw-r--r--src/pharos_dashboard/settings.py3
-rw-r--r--src/pharos_dashboard/urls.py2
2 files changed, 2 insertions, 3 deletions
diff --git a/src/pharos_dashboard/settings.py b/src/pharos_dashboard/settings.py
index 86de78c..b44fed8 100644
--- a/src/pharos_dashboard/settings.py
+++ b/src/pharos_dashboard/settings.py
@@ -36,9 +36,8 @@ INSTALLED_APPS = [
'django.contrib.staticfiles',
'django.contrib.humanize',
'bootstrap4',
- 'crispy_forms',
'rest_framework',
- 'rest_framework.authtoken',
+ 'rest_framework.authtoken'
]
MIDDLEWARE = [
diff --git a/src/pharos_dashboard/urls.py b/src/pharos_dashboard/urls.py
index 8535bed..fd791c3 100644
--- a/src/pharos_dashboard/urls.py
+++ b/src/pharos_dashboard/urls.py
@@ -32,7 +32,7 @@ from django.contrib import admin
urlpatterns = [
- url(r'^wf/', include('workflow.urls', namespace='workflow')),
+ url(r'^workflow/', include('workflow.urls', namespace='workflow')),
url(r'^', include('dashboard.urls', namespace='dashboard')),
url(r'^booking/', include('booking.urls', namespace='booking')),
url(r'^accounts/', include('account.urls', namespace='account')),