django/tests/template_tests/templates/included_content.html

12 lines
183 B
HTML

{% extends "included_base.html" %}
{% block content %}
content
{{ block.super }}
{% endblock %}
{% block error_here %}
error here
{% url "nonexistent_url" %}
{% endblock %}