I want to check if my site is running under HTTPS from within my template so that I can conditionally add S's to the HTTPs of my external javascript libraries (namely, jQuery). How can I do that?
|
|
|
If your resources are hosted on the same machine as you are serving requests from, it may not need to specify a url scheme at all:
This will use the same protocol (http or https) and server as the request to the original page. Edit: Alternatively, if you really need the info in your template, you can add the request context processor, and use a RequestContext in your views. This places a For exampe:
|
||||
|
|
Please consider using the https://docs.djangoproject.com/en/dev/ref/contrib/staticfiles/#std:templatetag-staticfiles-static |
|||
|
|
|
I'm not sure if Google did this at the time I asked this question, but they now recommend you add the library via
The |
|||
|
|