{# SPDX-License-Identifier: Apache-2.0 #} {# Copyright (C) 2025 Marcin Zieba #} {% extends 'generic/object.html' %} {% load helpers %} {% block tabs %} {% include 'netbox_nso_plugin/inc/_links_tabs.html' %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
Interface State
Interface {{ object.interface|linkify }}
Attribute {{ object.attribute }}
Status {% if object.status == "in_sync" or object.status == "imported" %} {{ object.status }} {% elif object.status == "changed" or object.status == "drifted" %} {{ object.status }} {% elif object.status == "error" or object.status == "apply_failed" %} {{ object.status }} {% elif object.status == "accepted" %} {{ object.status }} {% elif object.status == "deploying" %} {{ object.status }} {% else %} {{ object.status }} {% endif %}
NSO Value {{ object.nso_value|default:"—" }}
Accepted At {{ object.accepted_at|date:"Y-m-d H:i"|default:"—" }}
Last Apply At {{ object.last_apply_at|date:"Y-m-d H:i"|default:"—" }}
Last Apply Error {{ object.last_apply_error|default:"—" }}
Last Sync At {{ object.last_sync_at|date:"Y-m-d H:i"|default:"—" }}
{% if object.status == "imported" or object.status == "changed" %} {% endif %}
{% endblock content %}