{% with messages = get_flashed_messages(with_categories=true) %}
{% if user_readonly and current_endpoint != "profile" %}
{% if messages.append(('warning', 'You are in read-only mode. You can\'t make changes that will be saved in the database.')) %}
{% endif %}
{% endif %}
{% set unique_messages = {} %}
{% for category, message in messages %}
{% if message not in unique_messages %}
{% if unique_messages.update({message: True}) %}{% endif %}
{% if category == 'pro' %}
{% else %}
{% endif %}
{% endif %}
{% endfor %}
{% endwith %}