{% import "macros.jinja.html" as pac with context %}
{% if pac_info %}
{# ----- Info Card ---- #}
{{ pac.info_card(pac_info) }}
{# ---- Services ---- #}
{% if pac_info.user_handovers %}
{% for sg in pac_info.user_handovers %}
{{ pac.services_table(sg) }}
{% endfor %}
{% endif %}
{# ---- Attributes ---- #}
{% if pac_info.attributes %}
{% for ag in pac_info.attributes.values() %}
{% if ag.key not in hide_attribute_groups %}
{{ pac.attribute_group_block(ag) }}
{% endif %}
{% endfor %}
{% endif %}
{# ---- Attached Data ---- #}
{% if pac_info.attached_data %}
{{ pac.attached_data_block(pac_info.attached_data) }}
{% endif %}
{% endif %}