nekrochan/templates/action.html

22 řádky
475 B
HTML

{% extends "base.html" %}
{% block title %}Výsledek{% endblock %}
{% block content %}
<div class="container">
<h1 class="title">Výsledek</h1>
<table class="data-table">
<tr><th>Výsledek</th></tr>
<tr>
<td>
{% if !response.is_empty() %}
{{ response|linebreaksbr|safe }}
{% else %}
Nic se nezměnilo.
{% endif %}
</td>
</tr>
</table>
</div>
{% endblock %}