diff --git a/config/urls.py b/config/urls.py index a1690362..be05ffa8 100755 --- a/config/urls.py +++ b/config/urls.py @@ -47,7 +47,6 @@ from news.views import ( VideoCreateView, VideoListView, ) -from support.views import SupportView from users.views import ( CurrentUserAPIView, CurrentUserProfileView, @@ -241,8 +240,6 @@ urlpatterns = ( TemplateView.as_view(template_name="review/review_process.html"), name="review-process", ), - # support views - path("support/", SupportView.as_view(), name="support"), path( "getting-started/", TemplateView.as_view(template_name="support/getting_started.html"), diff --git a/support/__init__.py b/support/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/support/views.py b/support/views.py deleted file mode 100644 index ad95e955..00000000 --- a/support/views.py +++ /dev/null @@ -1,9 +0,0 @@ -from django.views.generic import TemplateView - - -class SupportView(TemplateView): - """ - Generic base view for the support view - """ - - template_name = "support/support.html" diff --git a/templates/includes/_header.html b/templates/includes/_header.html index c293d4bc..2bf3ba1b 100644 --- a/templates/includes/_header.html +++ b/templates/includes/_header.html @@ -278,7 +278,6 @@ - Support