{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block extra_controls %} {% if perms.forward_netbox.view_forwardexecutionrun %}  {% trans "Export Support Bundle" %}
{% csrf_token %}
{% endif %} {% if perms.forward_netbox.change_forwardexecutionrun %}
{% csrf_token %}
{% endif %} {% if perms.forward_netbox.run_forwardsync and retryable_step %}
{% csrf_token %}
{% endif %} {% if perms.forward_netbox.run_forwardsync and discardable_step %}
{% csrf_token %}
{% endif %} {% if perms.forward_netbox.merge_forwardingestion %}
{% csrf_token %}
{% endif %} {% endblock extra_controls %} {% block content %}
{% include 'forward_netbox/inc/execution_failure_banner.html' with failure_summary=latest_execution_failure support_bundle_url=support_bundle_url %} {% include 'forward_netbox/inc/execution_insights.html' with latest_execution_insights=latest_execution_insights %}
{% trans "Execution Run" %}
{% trans "Sync" %} {{ object.sync }}
{% trans "Source" %} {% if object.source %} {{ object.source }} {% else %} {{ ""|placeholder }} {% endif %}
{% trans "Backend" %} {{ object.get_backend_display }}
{% trans "Status" %} {{ object.get_status_display }}
{% trans "Phase" %} {{ object.phase|placeholder }}
{% trans "Phase Message" %} {{ object.phase_message|placeholder }}
{% trans "Job" %} {% if object.job %} {{ object.job }} {% else %} {{ ""|placeholder }} {% endif %}
{% trans "Validation Run" %} {% if object.validation_run %} {{ object.validation_run }} {% else %} {{ ""|placeholder }} {% endif %}
{% trans "Created" %} {{ object.created }}
{% trans "Completed" %} {{ object.completed|placeholder }}
{% plugin_left_page object %}
{% trans "Progress" %}
{% trans "Snapshot Selection" %} {{ object.snapshot_selector|placeholder }}
{% trans "Snapshot ID" %} {{ object.snapshot_id|placeholder }}
{% trans "Total Steps" %} {{ object.total_steps }}
{% trans "Next Step" %} {{ object.next_step_index }}
{% trans "Max Changes per Branch" %} {{ object.max_changes_per_branch }}
{% trans "Auto Merge" %} {{ object.auto_merge|yesno:"Yes,No" }}
{% trans "Baseline Ready" %} {{ object.baseline_ready|yesno:"Yes,No" }}
{% trans "Latest Heartbeat" %} {{ object.latest_heartbeat|placeholder }}
{% trans "Recovery Recommendation" %} {{ recovery_recommendation.message|placeholder }}
{% if object.last_error %}
{% trans "Last Error" %}
{{ object.last_error }}
{% endif %}
{% include 'extras/inc/configcontext_data.html' with title="Plan Preview" data=object.plan_preview format="json" copyid="forward-execution-plan-preview" %}
{% include 'extras/inc/configcontext_data.html' with title="Model Change Density" data=object.model_change_density format="json" copyid="forward-execution-model-change-density" %}
{% plugin_right_page object %}
{% endblock content %}