{% 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.add_softwareimagelcm and active_tab == 'software-images' %} Add a Software Image {% endif %} {% if perms.nautobot_device_lifecycle_mgmt.change_softwarelcm %} {% edit_button object %} {% endif %} {% if perms.nautobot_device_lifecycle_mgmt.delete_softwarelcm %} {% delete_button object %} {% endif %}

{{ object }}

{% include 'inc/created_updated.html' with obj=object %}
{% custom_links object %}
{% endblock %} {% block content %}
Software
Device Platform {% if object.device_platform %} {{ object.device_platform }} {% else %} — {% endif %}
Software Version {{ object.version }}
Release Date {{ object.release_date }}
End of Support {{ object.end_of_support }}
Documentation URL {% if object.documentation_url %} {{ object.documentation_url }} {% else %} {% endif %}
Long Term Support {% if object.long_term_support is True %} {% else %} {% endif %}
Pre Release {% if object.pre_release 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 %}