summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorssanger <ssanger2020@gmail.com>2024-10-18 18:18:43 -0700
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2024-10-22 14:20:00 +0200
commit8efba533979b55ed8ca45c9dcadd098cc935821d (patch)
tree2e1da86a3068d1ae1e3de1817e91d9163edb61b5 /docs
parent60dc9c288cf0f5e906b022e1ff77bea8a7c4ab19 (diff)
[5.1.x] Added missing alt attribute to <img> tag in docs.
Backport of df6013b2b4e93ed6d127c2f572e6de0ba46d1d6a from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/templates/builtins.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 86841b3dbd..c00baf3a07 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -3110,7 +3110,7 @@ slightly different call:
{% load static %}
{% static "images/hi.jpg" as myphoto %}
- <img src="{{ myphoto }}">
+ <img src="{{ myphoto }}" alt="Hi!">
.. admonition:: Using Jinja2 templates?