rowt/templates/index.html.tera

25 lines
542 B
Plaintext
Raw Normal View History

2023-04-03 16:11:26 +02:00
{% extends "base" %}
{% block content %}
{% if flash %}
{% if flash.0 == "success" %}
<div class="row">
<div class="one-column p-1 text-white bg-green mb-3 light text-center">
{{ flash.1 }}
</div>
</div>
{% endif %}
{% if flash.0 == "error" %}
<div class="row">
<div class="one-column p-1 text-white bg-red mb-3 bold text-center">
{{ flash.1 }}
</div>
</div>
{% endif %}
{% endif %}
<h1>Hi</h1>
{% endblock content %}