askama/testing/templates/fragment-nested-block.html
2024-04-25 10:44:58 +02:00

14 lines
215 B
HTML

{% extends "fragment-base.html" %}
{% block body %}
<p>Don't render me!</p>
{% block nested %}
<p>I should be here.</p>
{% endblock %}
{% endblock %}
{% block other_body %}
<p>Don't render me!</p>
{% endblock %}