diff options
| author | ssanger <ssanger2020@gmail.com> | 2024-10-18 18:18:43 -0700 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2024-10-22 14:18:20 +0200 |
| commit | df6013b2b4e93ed6d127c2f572e6de0ba46d1d6a (patch) | |
| tree | ee31a88b824f50bae13621f0149896500387a9a0 /docs | |
| parent | bcb91611eca154f022211633fe485e3e1a3c608d (diff) | |
Added missing alt attribute to <img> tag in docs.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/templates/builtins.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index d34742f210..8673727861 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -3100,7 +3100,7 @@ slightly different call: {% load static %} {% static "images/hi.jpg" as myphoto %} - <img src="{{ myphoto }}"> + <img src="{{ myphoto }}" alt="Hi!"> .. admonition:: Using Jinja2 templates? |
