{% extends 'generic/object.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load perms %} {% load plugins %} {% load tabs %} {% load i18n %} {% block title %}{{ object }}{% endblock %} {% block control-buttons %} {# Clone/Edit/Delete Buttons #}
{% custom_links object %}
{% if perms.core.sync_datasource %} {% if object.sync.ready_for_sync and object.branch and object.branch.status != "merged" %}  {% trans "Merge" %} {% else %} {% endif %} {% endif %}
{% 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 "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 %}
{% include 'ipfabric_netbox/partials/ingestion_progress.html' with job=object.job %}
{% include 'inc/panels/custom_fields.html' %} {% plugin_right_page object %}
{% include 'ipfabric_netbox/partials/job_logs.html' with job=object.job %}
{% endblock content %} {% block modals %} {% include 'inc/htmx_modal.html' with size='lg' %} {% endblock modals %}