{% extends 'generic/object_edit.html' %} {% load form_helpers %} {% block title %}{% if bulk %}Bulk Resolve Contacts{% else %}Resolve Contact{% endif %} from EntraID{% endblock %} {% block form %}
{% if bulk %}Bulk Resolve Contacts{% else %}Resolve Contact{% endif %} from EntraID
{% if bulk %}

This will resolve/update {{ selected_count }} selected contacts from EntraID.

{# Get the selected contact IDs from the view context #} {% if selected_contacts %} {% for pk in selected_contacts %} {% endfor %} {% endif %} {% else %}

This will resolve/update contact {{ contact.name }} (ID {{ contact.pk }}) from EntraID.

{% endif %} {% if form %} {% render_field form.dry_run %} {% else %} {# Fallback when form is not available #}
{% endif %} {% load helpers %}
{% endblock %} {% block buttons %} {% if bulk %} Cancel {% else %} Cancel {% endif %} {% endblock %}