{# templates/slurpit_nautobot/reconcile_detail.html #} {% extends 'generic/object_list.html' %} {% load buttons %} {% load i18n %} {% load helpers %} {% load static %} {% load perms %} {% block title %} {{ object }} {% endblock %} {% block header %}
{# Title #}
{% include "slurpit_nautobot/logo.html" %} {# Center-align title in object-edit views #}

{{ title }}

{% block subtitle %}{% endblock %}
{# Controls #} {% block controls %}{% endblock controls %}
{% endblock header %} {% block content %}
{% trans "Change" %}
{% trans "Time" %} {{ updated_time }}
{% trans "Action" %} {{ action }}
{% trans "Object Type" %} {{ object_type }}
{% trans "Object" %} {% if object and object.get_absolute_url %} {{ object }} {% endif %}
{% trans "Difference" %}
{% if diff_added == diff_removed %} {% if object.action == 'create' %} {% trans "Object Created" %} {% elif object.action == 'delete' %} {% trans "Object Deleted" %} {% else %} {% trans "No Changes" %} {% endif %} {% else %}
{{ diff_removed|render_json }}
{{ diff_added|render_json }}
{% endif %}
{% trans "Current state" %}
{% if current_state %}
{{ current_state |render_json }}
{% elif non_atomic_change %} {% trans "Warning: Comparing non-atomic change to previous change record" %} ({{ prev_change.pk }}) {% else %} {% trans "None" %} {% endif %}
{% trans "Incomming change" %}
{% if incomming_change %}
{{ incomming_change |render_json }}
{% else %} {% trans "None" %} {% endif %}
{% endblock content %}