Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/template_tests/templates/included_content.html
blob: bfc87c0425274ba6f91f5acba02a1b621e76bc36 (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 "non_existing_url" %}
{% endblock %}