You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
504 B

{% extends 'base.html' %}
{# Tohle je univerzální template pro potřebu zobrazovat triviální hlášky generované v kódu. __Není__ určen pro sofistikované použití ani pro zneužívání! #}
{% block nadpis1a %}
{% if title %}
{{ title }}
{% else %}
{{ block.super }}
{% endif %}
{% endblock %}
{% block content %}
{% if error %}
<p style="color: red;">{{ error }}</p>
{% endif %}
{% if text %}
<p>{{ text }}</p>
{% endif %}
{% if raw_html %}
{{ raw_html | safe }}
{% endif %}
{% endblock %}