summaryrefslogtreecommitdiff
path: root/tests/template_tests/templates/included_content.html
blob: cc033bd3b91a07114de265e36b2b536c153cac11 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "included_base.html" %}

{% block content %}
  content
  {{ block.super }}
{% endblock %}

{% block error_here %}
  error here
  {% url "nonexistent_url" %}
{% endblock %}