summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2020-11-02 12:34:24 +0300
committerGitHub <noreply@github.com>2020-11-02 10:34:24 +0100
commit42f3fafdfab01f6b04b817c45140e8309eecf84c (patch)
tree04ae705e3392467d451623de9841385ec1c0af1a /docs
parentc8785b473f99a0dbc76f8a61b88904e2f44998ae (diff)
Updated {% static %} tag examples in docs to use single quotes where appropriate.
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/static-files/index.txt2
-rw-r--r--docs/intro/overview.txt2
-rw-r--r--docs/ref/settings.txt2
-rw-r--r--docs/ref/templates/builtins.txt2
4 files changed, 4 insertions, 4 deletions
diff --git a/docs/howto/static-files/index.txt b/docs/howto/static-files/index.txt
index 9bdfc2fd82..001ec50d6b 100644
--- a/docs/howto/static-files/index.txt
+++ b/docs/howto/static-files/index.txt
@@ -26,7 +26,7 @@ Configuring static files
.. code-block:: html+django
{% load static %}
- <img src="{% static "my_app/example.jpg" %}" alt="My image">
+ <img src="{% static 'my_app/example.jpg' %}" alt="My image">
#. Store your static files in a folder called ``static`` in your app. For
example ``my_app/static/my_app/example.jpg``.
diff --git a/docs/intro/overview.txt b/docs/intro/overview.txt
index fa61e4ec57..c0d528527f 100644
--- a/docs/intro/overview.txt
+++ b/docs/intro/overview.txt
@@ -307,7 +307,7 @@ Here's what the "base.html" template, including the use of :doc:`static files
<title>{% block title %}{% endblock %}</title>
</head>
<body>
- <img src="{% static "images/sitelogo.png" %}" alt="Logo">
+ <img src="{% static 'images/sitelogo.png' %}" alt="Logo">
{% block content %}{% endblock %}
</body>
</html>
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index e1b1410f62..606ef98744 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -3471,7 +3471,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 7fd44b01d7..1c79f3a2f5 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -2618,7 +2618,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::