{% if data and data.object_id %}
{% if "component_uuid" in data and data.component_uuid is not none and data.component_uuid != config['FEDERATION_UUID'] %}
{% set component_uuid = data.component_uuid %}
{% else %}
{% set component_uuid = none %}
{% endif %}
{% with obj = get_object_if_current_user_has_read_permissions(data.object_id, component_uuid) %}
{% if not (obj is none) %}
{{ obj.name | get_translated_text(metadata_language) or '—' }} (#{{ obj.object_id }})
{{ import_information_symbol(obj, text=true) }}
{% elif component_uuid is not none %}
{{ _('Object') }} #{{ data.object_id }}
{{ import_information_symbol(FederationObjectRef(fed_id=data.object_id, component_uuid=component_uuid), text=true) }}
{% else %}
#{{ data.object_id }}
{% endif %}
{% endwith %}
{% else %}
—
{% endif %}