summaryrefslogtreecommitdiff
path: root/djangoproject/urls/www.py
diff options
context:
space:
mode:
authorVishal Goyal <vishal.goyal7711@gmail.com>2026-05-08 22:19:15 +0530
committerGitHub <noreply@github.com>2026-05-08 22:19:15 +0530
commit7cdb932f68fc79d820c41ffc1e2a63d7178b20c7 (patch)
tree3133e84c06ce137fc7496dda25eb47469d7a1ac2 /djangoproject/urls/www.py
parenta64c34e669bd5611afebd5da9ce3b622a786eae3 (diff)
Redirect /about to /foundation (#2429)
* Redirect /about to /foundation * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Diffstat (limited to 'djangoproject/urls/www.py')
-rw-r--r--djangoproject/urls/www.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/djangoproject/urls/www.py b/djangoproject/urls/www.py
index 33fb8edc..a676a0c4 100644
--- a/djangoproject/urls/www.py
+++ b/djangoproject/urls/www.py
@@ -29,6 +29,13 @@ sitemaps = {
urlpatterns = [
path("", TemplateView.as_view(template_name="homepage.html"), name="homepage"),
path(
+ "about/",
+ RedirectView.as_view(
+ pattern_name="members:developer-members",
+ permanent=True,
+ ),
+ ),
+ path(
"start/overview/",
TemplateView.as_view(template_name="overview.html"),
name="overview",