askama/testing/templates/fragment-nested-super.html
Michael Pollind ce73e73720 feat: add caller pattern and adjust syntax to closer match jinja
Signed-off-by: Michael Pollind <mpollind@gmail.com>
2025-05-22 22:50:40 +02:00

13 lines
190 B
HTML

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