summaryrefslogtreecommitdiff
path: root/docs/ref/class-based-views
diff options
context:
space:
mode:
authorNick Pope <nick@nickpope.me.uk>2021-04-27 12:09:00 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-05-17 12:16:09 +0200
commitcb91b2d9e3e28d0ede24dbb052faa6e7fead5897 (patch)
tree6ba869da57dc76a38857115e096f09426949f50b /docs/ref/class-based-views
parent55b89e8cac2f8cc7cf3f96dfa138b3b9fda81160 (diff)
[3.2.x] Refs #32720 -- Updated various links in docs to avoid redirects and use HTTPS.
Backport of c156e369553c75a30c78b8ed54a57b1101865105 from main
Diffstat (limited to 'docs/ref/class-based-views')
-rw-r--r--docs/ref/class-based-views/base.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/class-based-views/base.txt b/docs/ref/class-based-views/base.txt
index b12b6e5765..e64fc03555 100644
--- a/docs/ref/class-based-views/base.txt
+++ b/docs/ref/class-based-views/base.txt
@@ -225,7 +225,7 @@ MRO is an acronym for Method Resolution Order.
urlpatterns = [
path('counter/<int:pk>/', ArticleCounterRedirectView.as_view(), name='article-counter'),
path('details/<int:pk>/', ArticleDetailView.as_view(), name='article-detail'),
- path('go-to-django/', RedirectView.as_view(url='https://djangoproject.com'), name='go-to-django'),
+ path('go-to-django/', RedirectView.as_view(url='https://www.djangoproject.com/'), name='go-to-django'),
]
**Attributes**