Welcome to PyPillar

{% with messages = get_flashed_messages(category_filter=["error"]) %} {% if messages %}
Error!
    {% for msg in messages %}
  • {{ msg }}
  • {% endfor %}
{% endif %} {% endwith %} {% with messages = get_flashed_messages(category_filter=["success"]) %} {% if messages %}
Success!
    {% for msg in messages %}
  • {{ msg }}
  • {% endfor %}
{% endif %} {% endwith %} {% block content %}{% endblock %}