From b124671050baefde9ed3dbd2f63e72845f15c7c3 Mon Sep 17 00:00:00 2001 From: Xavier Fiechter Date: Sun, 12 Feb 2023 00:00:05 +0100 Subject: [PATCH] . --- labellabor/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/labellabor/urls.py b/labellabor/urls.py index 011ae4c..b7027dd 100644 --- a/labellabor/urls.py +++ b/labellabor/urls.py @@ -8,7 +8,7 @@ from rest_framework.documentation import include_docs_urls from rest_framework.urlpatterns import format_suffix_patterns from django.contrib.auth.decorators import login_required from userprofile.views import ProfileView, APIKeyView -from .views import (LabelbaseView, LabelbaseDeleteView, LabelDeleteView, +from .views import (LabelbaseView, LabelbaseDeleteView, LabelDeleteView, TermsView, HomeView, RegistrationCompleteView, LabelUpdateView, PrivacyView, RegistrationView, LabelbaseFormView, LabelbaseUpdateView ) from importer.views import upload_labels @@ -35,7 +35,7 @@ urlpatterns = [ path('account/register/', RegistrationView.as_view(), name='registration'), path('account/register/done/', RegistrationCompleteView.as_view(), name='registration_complete'), path('privacy-policy', PrivacyView.as_view(), name='privacy_policy'), - path('terms', PrivacyView.as_view(), name='terms'), + path('terms', TermsView.as_view(), name='terms'), path('', HomeView.as_view(), name='home'), path('', include(tf_urls)), path('', include('user_sessions.urls', 'user_sessions')),