Skip to content

Commit

Permalink
remove about page
Browse files Browse the repository at this point in the history
  • Loading branch information
frankwiles committed Jul 13, 2023
1 parent 4af0c76 commit f0daed3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 158 deletions.
47 changes: 20 additions & 27 deletions config/urls.py
Original file line number Diff line number Diff line change
@@ -1,46 +1,35 @@
from django.conf import settings
from django.urls import include, re_path
from django.conf.urls.static import static
from django.contrib import admin
from django.urls import include, path, re_path
from django.views.generic import TemplateView
from django.urls import path
from rest_framework import routers

from machina import urls as machina_urls
from rest_framework import routers

from users.views import (
UserViewSet,
CurrentUserAPIView,
CurrentUserProfileView,
ProfileView,
ProfilePhotoGitHubUpdateView,
ProfilePhotoUploadView,
ProfilePreferencesView,
)
from ak.views import (
HomepageView,
ForbiddenView,
HomepageBetaView,
HomepageView,
InternalServerErrorView,
NotFoundView,
OKView,
HomepageBetaView,
)
from core.views import (
ClearCacheView,
MarkdownTemplateView,
StaticContentTemplateView,
antora_header_view,
antora_footer_view,
antora_header_view,
)
from libraries.api import LibrarySearchView
from libraries.views import (
LibraryDetail,
LibraryList,
LibraryListMini,
LibraryListByCategory,
LibraryListByCategoryMini,
LibraryDetail,
LibraryListMini,
)
from libraries.api import LibrarySearchView
from mailing_list.views import MailingListView, MailingListDetailView
from mailing_list.views import MailingListDetailView, MailingListView
from news.views import (
AllTypesCreateView,
BlogPostCreateView,
Expand All @@ -60,9 +49,18 @@
VideoCreateView,
VideoListView,
)
from support.views import SupportView, ContactView
from support.views import ContactView, SupportView
from users.views import (
CurrentUserAPIView,
CurrentUserProfileView,
ProfilePhotoGitHubUpdateView,
ProfilePhotoUploadView,
ProfilePreferencesView,
ProfileView,
UserViewSet,
)
from versions.api import VersionViewSet
from versions.views import VersionDetail, VersionCurrentReleaseDetail
from versions.views import VersionCurrentReleaseDetail, VersionDetail

router = routers.SimpleRouter()

Expand Down Expand Up @@ -105,11 +103,6 @@
TemplateView.as_view(template_name="docs_temp.html"),
name="docs",
),
path(
"about/",
TemplateView.as_view(template_name="boost/about.html"),
name="boost-about",
),
path("health/", include("health_check.urls")),
path("forum/", include(machina_urls)),
# temp page for community until mailman is done.
Expand Down
131 changes: 0 additions & 131 deletions templates/boost/about.html

This file was deleted.

0 comments on commit f0daed3

Please sign in to comment.