{% extends 'generic/object.html' %} {% load helpers %} {% load static %} {% block content %}

Device Config Sync Status

Device {{ object.device|linkify }}
Connection {{ object.connection|linkify }}
Lines Added {% if object.lines_added > 0 %} {{ object.lines_added }} {% else %} {{ object.lines_added }} {% endif %}
Lines Removed {% if object.lines_removed > 0 %} {{ object.lines_removed }} {% else %} {{ object.lines_removed }} {% endif %}
Lines Changed {% if object.lines_changed > 0 %} {{ object.lines_changed }} {% else %} {{ object.lines_changed }} {% endif %}
Config Render OK {% if object.config_render_ok %} Yes {% else %} No {% endif %}
Last Pull {% if object.last_pull %} {{ object.last_pull|date:"Y-m-d H:i:s" }} {% else %} Never {% endif %}
Last Push {% if object.last_push %} {{ object.last_push|date:"Y-m-d H:i:s" }} {% else %} Never {% endif %}
Latest Sync Job {% if object.sync_job %} {{ object.sync_job|linkify }} {% else %} None {% endif %}
Deduce XPaths {% if object.deduce_xpaths %} Yes {% else %} No {% endif %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
{% if object.deduce_xpaths %}

XPath Entries (deduced automatically)

{% else %}

Manual XPath Entries

{% endif %}
{% if object.get_xpath_entries %}
{% for xp in object.get_xpath_entries %}{{ xp }}
{% endfor %}
{% else %} None {% endif %}

Panorama Configuration

{% endblock content %} {% block javascript %} {{ block.super }} {% endblock %}