{% load environment_templatetags %}
{# Enhanced Service Error Display Component Template #}
{% if entity|has_errors %}
{% if group_by_severity %}
{# Group errors by severity for better organization #}
{% with grouped_errors=entity.service_errors|group_errors %}
{% if grouped_errors.critical %}
{% for error in grouped_errors.critical %}
{% if error_prefix %}{{ error_prefix }}: {% endif %}{{ error|error_message }}
{% if error|error_action_link %}
{{ error|error_action_text }}
{% endif %}
{% endfor %}
{% endif %}
{% if grouped_errors.warning %}
{% for error in grouped_errors.warning %}
{% if error_prefix %}{{ error_prefix }}: {% endif %}{{ error|error_message }}
{% if error|error_action_link %}
{{ error|error_action_text }}
{% endif %}
{% endfor %}
{% endif %}
{% if grouped_errors.info %}
{% for error in grouped_errors.info %}
{% if error_prefix %}{{ error_prefix }}: {% endif %}{{ error|error_message }}
{% endfor %}
{% endif %}
{% endwith %}
{% else %}
{# Standard error display #}
{% for error in entity.service_errors %}
{% if error_prefix %}{{ error_prefix }}: {% endif %}{{ error|error_message }}
{% if error|error_action_link %}
{{ error|error_action_text }}
{% endif %}
{% endfor %}
{% endif %}