{% extends 'generic/object.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load perms %} {% load plugins %} {% load tabs %} {% 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" %}  Merge {% else %} {% endif %} {% endif %}
{% endblock control-buttons %} {% block tabs %}
{% include 'ipfabric_netbox/partials/object_tabs.html' with object=object %}
{% endblock tabs %} {% block content %}
Ingestion Information
Name {{ object.name }}
Description {{ object.description|placeholder }}
Sync Object {{ object.sync.name}}
Branch Object {% if object.branch %}{{ object.branch.name}}{% else %}{{ ""|placeholder }}{% endif %}
Job Object {% if object.job %}{{ object.job }}{% else %}{{ ""|placeholder }}{% endif %}
Ingestion Status
{% include 'ipfabric_netbox/partials/ingestion_status.html' with object=object %}
Snapshot {{object.sync.snapshot_data.name }}
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 %}