{% extends "client_portal/base.html" %} {% from "components/ui.html" import page_header %} {% block title %}{{ error_info.title }} - {{ _('Client Portal') }}{% endblock %} {% block content %} {% set current_client = get_current_client() %}

{{ error_info.title }}

{{ error_info.subtitle or _('An error occurred') }}

{{ error_info.message }}

{% if error_info.details %}

{{ _('Details') }}:

    {% for detail in error_info.details %}
  • {{ detail }}
  • {% endfor %}
{% endif %}
{% if current_client %} {{ _('Go to Dashboard') }} {% else %} {{ _('Login to Client Portal') }} {% endif %} {% if error_info.show_back %} {% endif %}
{% if not current_client %}

{{ _('If you believe you should have access to the client portal, please contact your administrator or use the login link above.') }}

{% endif %}
{% endblock %}