MySQL Web‑Formular
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, msg in messages %}
{{ msg }}
{% endfor %}
{% endif %}
{% endwith %}
{% if error %}
{{ error }}
{% endif %}
{% if columns and rows %}
Ergebnis
{% for c in columns %}| {{ c }} | {% endfor %}
{% for r in rows %}
{% for v in r %}| {{ v }} | {% endfor %}
{% endfor %}
{{ rows|length }} Zeilen
{% elif rowcount is not none %}
Ergebnis
{{ rowcount }} Zeilen betroffen.
{% endif %}