This repository has been archived on 2025-09-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nekrochan/templates/action.html
2025-09-28 12:59:09 +02:00

22 lines
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 %}