12 lines
184 B
HTML
12 lines
184 B
HTML
|
{% extends "included_base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
content
|
||
|
{{ block.super }}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block error_here %}
|
||
|
error here
|
||
|
{% url "non_existing_url" %}
|
||
|
{% endblock %}
|