Browse Source

Fixed example indentation in howto/overriding-templates.txt.

Mariusz Felisiak 5 months ago
parent
commit
bcb91611ec
1 changed files with 7 additions and 7 deletions
  1. 7 7
      docs/howto/overriding-templates.txt

+ 7 - 7
docs/howto/overriding-templates.txt

@@ -111,15 +111,15 @@ reimplement the entire template.
 For example, you can use this technique to add a custom logo to the
 ``admin/base_site.html`` template:
 
-    .. code-block:: html+django
-       :caption: ``templates/admin/base_site.html``
+.. code-block:: html+django
+   :caption: ``templates/admin/base_site.html``
 
-        {% extends "admin/base_site.html" %}
+    {% extends "admin/base_site.html" %}
 
-        {% block branding %}
-            <img src="link/to/logo.png" alt="logo">
-            {{ block.super }}
-        {% endblock %}
+    {% block branding %}
+      <img src="link/to/logo.png" alt="logo">
+      {{ block.super }}
+    {% endblock %}
 
 Key points to note: