1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[1.9.x] Fixed #25778 -- Updated docs links to use https when available.

Backport of 7aabd62380 from master
This commit is contained in:
Jon Dufresne
2015-11-29 08:29:46 -08:00
committed by Tim Graham
parent b407410232
commit bf76cf07e0
66 changed files with 156 additions and 156 deletions

View File

@@ -205,7 +205,7 @@ RedirectView
urlpatterns = [
url(r'^counter/(?P<pk>[0-9]+)/$', ArticleCounterRedirectView.as_view(), name='article-counter'),
url(r'^details/(?P<pk>[0-9]+)/$', ArticleDetail.as_view(), name='article-detail'),
url(r'^go-to-django/$', RedirectView.as_view(url='http://djangoproject.com'), name='go-to-django'),
url(r'^go-to-django/$', RedirectView.as_view(url='https://djangoproject.com'), name='go-to-django'),
]
**Attributes**