summaryrefslogtreecommitdiff
path: root/docs/howto/static-files
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/howto/static-files
parentc8785b473f99a0dbc76f8a61b88904e2f44998ae (diff)
Updated {% static %} tag examples in docs to use single quotes where appropriate.
Diffstat (limited to 'docs/howto/static-files')
-rw-r--r--docs/howto/static-files/index.txt2
1 files changed, 1 insertions, 1 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``.