diff options
| author | Jon Dufresne <jon.dufresne@gmail.com> | 2015-11-29 08:29:46 -0800 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-12-01 08:01:34 -0500 |
| commit | 7aabd6238028f4bb78d0687bbccc97bcf634e28b (patch) | |
| tree | 8bf67912d9154f1420574c9f22bc75d9fe2f2de0 /docs/ref/contrib/admin | |
| parent | 51a37213721e5689f17809990a9e7c38f1c8baf8 (diff) | |
Fixed #25778 -- Updated docs links to use https when available.
Diffstat (limited to 'docs/ref/contrib/admin')
| -rw-r--r-- | docs/ref/contrib/admin/index.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt index 872ceb7a5a..4173c063dc 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -1256,8 +1256,8 @@ subclass:: class PersonAdmin(admin.ModelAdmin): def view_on_site(self, obj): - return 'http://example.com' + reverse('person-detail', - kwargs={'slug': obj.slug}) + return 'https://example.com' + reverse('person-detail', + kwargs={'slug': obj.slug}) Custom template options ~~~~~~~~~~~~~~~~~~~~~~~ @@ -1929,7 +1929,7 @@ files for the forms and/or formsets. If :setting:`DEBUG` is ``True`` it will return the uncompressed versions of the various JavaScript files, including ``jquery.js``; if not, it will return the 'minified' versions. -.. _jQuery: http://jquery.com +.. _jQuery: https://jquery.com .. _admin-custom-validation: |
