diff options
| author | Nikita Sobolev <mail@sobolevn.me> | 2020-11-02 12:34:24 +0300 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-11-02 10:35:04 +0100 |
| commit | 31946faf4fb669ee182b0ee027a286eb2fa9b35c (patch) | |
| tree | 1b20d08fefb97032d3154978e9bd4fe0daac8eb8 /docs/ref | |
| parent | e707a1bd9a485319421414f2d171c3faca9cd58c (diff) | |
[3.1.x] Updated {% static %} tag examples in docs to use single quotes where appropriate.
Backport of 42f3fafdfab01f6b04b817c45140e8309eecf84c from master
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/settings.txt | 2 | ||||
| -rw-r--r-- | docs/ref/templates/builtins.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index a02dcfcf68..4a12d9de0a 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -3486,7 +3486,7 @@ This would allow you to refer to the local file .. code-block:: html+django - <a href="{% static "downloads/polls_20101022.tar.gz" %}"> + <a href="{% static 'downloads/polls_20101022.tar.gz' %}"> .. setting:: STATICFILES_STORAGE diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index 54258155bd..a2e1eeecc6 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -2602,7 +2602,7 @@ app is installed, the tag will serve files using ``url()`` method of the storage specified by :setting:`STATICFILES_STORAGE`. For example:: {% load static %} - <img src="{% static "images/hi.jpg" %}" alt="Hi!"> + <img src="{% static 'images/hi.jpg' %}" alt="Hi!"> It is also able to consume standard context variables, e.g. assuming a ``user_stylesheet`` variable is passed to the template:: |
