{% 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 %}  Merge {% else %} {% endif %} {% endif %}
{% endblock control-buttons %} {% block content %}
Branch Information
Name {{ object.name }}
Description {{ object.description|placeholder }}
Sync Object {{ object.sync.name}}
Job Object {{ object.job }}
Sync Status
{% include 'ipfabric_netbox/partials/branch_status.html' with object=object %}
Snapshot {{object.sync.snapshot_data.name }}
Source {{object.sync.snapshot_data.source.name }}
{% plugin_left_page object %}
Statistics
Created {% if object.num_created %} {{ object.num_created }} {% else %} {{ ''|placeholder }} {% endif %}
Updated {% if object.num_updated %} {{ object.num_updated }} {% else %} {{ ''|placeholder }} {% endif %}
Deleted {% if object.num_deleted %} {{ object.num_deleted }} {% else %} {{ ''|placeholder }} {% endif %}
{% include 'ipfabric_netbox/partials/branch_progress.html' %}
{% 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 %}