🔨 Remove support route and template

We are not using this page so I’m removing the route, app and template

Issue: #548
This commit is contained in:
Greg Newman
2023-12-15 10:48:48 -05:00
parent ae84eb9d77
commit 452992cf8b
4 changed files with 0 additions and 13 deletions

View File

@@ -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"),

View File

View File

@@ -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"

View File

@@ -278,7 +278,6 @@
</svg>
</span>
</span>
<a href="{% url 'support' %}" class="block py-2 px-3 text-gray-500 dark:text-gray-400">Support</a>
</div>
</div>
</div>