{% from "helpers.html" import input %}
{% block header %} {% endblock header %}
{% with messages = get_flashed_messages(with_categories=True) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %} {% if form and form.errors %}
Errors occured verifying your input. Please check the marked fields below.
{% endif %} {% block content %} {% endblock content %}
{% block sidebar %} {% endblock sidebar %}