revert to not using flashed messages

This commit is contained in:
csd4ni3l
2025-08-09 14:19:58 +02:00
parent 27636a4429
commit c34e73d583
2 changed files with 2 additions and 16 deletions

View File

@@ -1,13 +0,0 @@
{% extends "base.jinja2" %}
{% block title %}Grass Touching Unathorized{% endblock %}
{% block body %}
{% with messages = get_flashed_messages()%}
{% if messages%}
{% for message in messages%}
<p>{{message}}</p>
{%endfor%}
{%endif%}
{%endwith%}
{% endblock %}