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

13 lines
200 B
HTML

{% extends "fragment-mid-super.html" %}
{% block body %}
<p>Hello {{ name }}!</p>
{% call super() %}
{% endblock %}
{% block other_body %}
<p>Don't render me.</p>
{% call super() %}
{% endblock %}