{% import "pac_info/base-components.jinja.html" as pac_macros with context %}
{% import "pac_info/card.jinja.html" as card with context %}
{% block head_extension%}
{% endblock %}
{% if pac_info %}
{# ----- Info Card ---- #}
{{ card.info_card(pac_info) }}
{# ---- Services ---- #}
{% if pac_info.user_handovers %}
Services
{% for sg in pac_info.user_handovers %}
{{ pac_macros.services_table(sg) }}
{% endfor %}
{% endif %}
{# ---- Attributes ---- #}
{% if pac_info.attribute_groups %}
Attributes
{% for ag in pac_info.attribute_groups.values() %}
{% if ag.key not in hide_attribute_groups %}
{{ pac_macros.attribute_group_block(ag) }}
{% endif %}
{% endfor %}
{% endif %}
{# ---- Attached Data ---- #}
{% if pac_info.attached_data %}