{% extends 'generic/object.html' %} {% load custom_links %} {% load forward_netbox_helpers %} {% load helpers %} {% load plugins %} {% load i18n %} {% block control-buttons %}
| {% trans "Name" %} | {{ object.name }} |
|---|---|
| {% trans "Sync" %} | {{ object.sync.name }} |
| {% trans "Branch" %} | {% if object.branch %} {{ object.branch.name }} {% else %} {{ ""|placeholder }} {% endif %} |
| {% trans "Job" %} | {% if object.job %} {{ object.job }} {% else %} {{ ""|placeholder }} {% endif %} |
| {% trans "Merge Job" %} | {% if object.merge_job %} {{ object.merge_job }} {% else %} {{ ""|placeholder }} {% endif %} |
| {% trans "Status" %} | {% include 'forward_netbox/partials/ingestion_status.html' with object=object %} |
| {% trans "Snapshot Selection" %} | {{ object.get_snapshot_summary.snapshot_selector|placeholder }} |
| {% trans "Snapshot ID" %} | {{ object.get_snapshot_summary.snapshot_id|placeholder }} |
| {% trans "Snapshot State" %} | {{ object.get_snapshot_summary.state|placeholder }} |
| {% trans "Snapshot Created" %} | {{ object.get_snapshot_summary.created_at|placeholder }} |
| {% trans "Snapshot Processed" %} | {{ object.get_snapshot_summary.processed_at|placeholder }} |
| {% trans "Created" %} | {{ object.created }} |
| {{ key }} | {{ value|placeholder }} |
|---|