{% extends 'nautobot_ssot/sync_header.html' %} {% load buttons %} {% load plugins %} {% load shorter_timedelta %} {% load render_diff %} {% block content %}
Sync
Data Source {% if object.get_source_url %} {{ object.source }} {% else %} {{ object.source }} {% endif %}
Data Target {% if object.get_target_url %} {{ object.target }} {% else %} {{ object.target }} {% endif %}
Type {% if object.dry_run %} Dry Run {% else %} Sync {% endif %}
Start Time {{ object.start_time }} ({{ object.start_time | timesince }} ago)
End Time {{ object.job_result.completed }} ({{ object.job_result.completed | timesince }} ago)
Duration {{ object.duration | shorter_timedelta }}
Status {% include 'extras/inc/job_label.html' with result=object.job_result %}
Job result {{ object.job_result.pk }}
{% plugin_left_page object %}
{% include 'inc/custom_fields_panel.html' %} {% include 'inc/relationships_panel.html' %} {% plugin_right_page object %}
Diff
{% render_diff object.diff %}
{% plugin_full_width_page object %}
{% endblock %}