{% block title %}GVELO ENTERPRISE PLATFORM{% endblock %}
{% set asset_version = config.get('ASSET_VERSION') or config.get('VERSION') or '20260716' %}
{% block head_extra %}{% endblock %}
Skip to main content
{% block workspace_notifications %}
{% with flashes = get_flashed_messages(with_categories=true) %}
{% if flashes %}
{% for category, message in flashes %}
{% set tone = category if category in ['success', 'error', 'warning', 'info'] else 'info' %}
{{ ui.alert(message, tone) }}
{% endfor %}