1
0
mirror of https://github.com/django/django.git synced 2025-01-15 12:52:31 +00:00
django/tests/template_tests/templates/included_content.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
183 B
HTML
Raw Normal View History

{% extends "included_base.html" %}
{% block content %}
content
{{ block.super }}
{% endblock %}
{% block error_here %}
error here
2017-02-02 20:43:21 -05:00
{% url "nonexistent_url" %}
{% endblock %}