{% extends 'generic/object.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load ipfabric_netbox_helpers %} {% load perms %} {% load plugins %} {% load tabs %} {% load i18n %} {% block title %}{{ object }}{% endblock %} {% block control-buttons %} {# Clone/Edit/Delete Buttons #}
{% custom_links object %}
{% include 'ipfabric_netbox/partials/ingestion_merge_button.html' with object=object %}
{% endblock control-buttons %} {% block tabs %}
{% include 'ipfabric_netbox/partials/object_tabs.html' with object=object %}
{% endblock tabs %} {% block content %}
{% trans "Ingestion Information" %}
{% trans "Name" %} {{ object.name }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Sync Object" %} {{ object.sync.name}}
{% trans "Branch Object" %} {% if object.branch %}{{ object.branch.name}}{% else %}{{ ""|placeholder }}{% endif %}
{% trans "Job Object" %} {% if object.job %}{{ object.job }}{% else %}{{ ""|placeholder }}{% endif %}
{% trans "Merge Job Object" %} {% if object.merge_job %}{{ object.merge_job }}{% else %}{{ ""|placeholder }}{% endif %}
{% trans "Ingestion Status" %}
{% include 'ipfabric_netbox/partials/ingestion_status.html' with object=object %}
{% trans "Snapshot" %} {{object.sync.snapshot_data.name }}
{% trans "Source" %} {{object.sync.snapshot_data.source.name }}
{% plugin_left_page object %}
{% include 'ipfabric_netbox/partials/ingestion_statistics.html' with object=object %}
{% render_progress_card object.job statistics active_stage merge_job=merge_job merge_disabled=merge_disabled %}
{% include 'inc/panels/custom_fields.html' %} {% plugin_right_page object %}
{% include 'ipfabric_netbox/partials/job_logs.html' with job=object.job merge_job=merge_job job_results=job_results merge_job_results=merge_job_results active_stage=active_stage %}
{% endblock content %} {% block modals %} {% include 'inc/htmx_modal.html' with size='lg' %} {% endblock modals %}