{% block base_flash_messages %}
{% if app.session.flashbag.get('success') is not empty or app.session.flashbag.get('error') is not empty %}
{% for message in app.session.flashbag.get('success') %}
{% endif %}
{% endblock %}
{% block base_page_title %}{% endblock %}
{% block base_content %}{% endblock %}
{{ message|trans|processShortcodes|raw }}
{% endfor %}
{% for message in app.session.flashbag.get('error') %}
{{ message|trans|processShortcodes|raw }}
{% endfor %}