Nekrocuck

This commit is contained in:
2025-09-28 12:59:09 +02:00
commit a2d093954d
402 changed files with 13763 additions and 0 deletions

21
templates/action.html Normal file
View File

@@ -0,0 +1,21 @@
{% 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 %}