{% extends 'base.html' %} {% load plugins %} {% load buttons %} {% load custom_links %} {% load helpers %} {% block title %}{{ object }}{% endblock %} {% block header %}
{% plugin_buttons object %} {% if perms.nautobot_device_lifecycle_mgmt.change_validatedsoftwarelcm %} {% edit_button object %} {% endif %} {% if perms.nautobot_device_lifecycle_mgmt.delete_validatedsoftwarelcm %} {% delete_button object %} {% endif %}

{{ object }}

{% include 'inc/created_updated.html' with obj=object %}
{% custom_links object %}
{% endblock %} {% block content %}
ValidatedSoftware
Software Version {% if object.software %} {{ object.software }} {% else %} — {% endif %}
Assigned To {% if object.assigned_to %} {{ object.assigned_to }} {% else %} — {% endif %}
Valid Start {{ object.start }}
Valid End {{ object.end }}
Preferred Version {% if object.preferred is True %} {% else %} {% endif %}
{% include 'inc/custom_fields_panel.html' %} {% include 'inc/relationships_panel.html' %} {% include 'extras/inc/tags_panel.html' with tags=object.tags.all %}
{% endblock %}