{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% block title %}{{ object }}{% endblock %} {% block header %}
{% if perms.nautobot_device_lifecycle_mgmt.change_hardwarelcm %} {% edit_button object %} {% endif %} {% if perms.nautobot_device_lifecycle_mgmt.delete_hardwarelcm %} {% delete_button object %} {% endif %}

Hardware Notice: {{ object }}

{% include 'inc/created_updated.html' with obj=object %}
{% custom_links object %}
{% endblock %} {% block content %}
Hardware Notice
{% if object.device_type %} {% elif object.inventory_item %} {% endif %}
Devices {% for device in devices %} {{ device }}{% if not forloop.last %}, {% endif %} {% endfor %}
Device Type {{ object.device_type }}Inventory Item {{ object.inventory_item }}
End of Sale {% if object.end_of_sale %} {{ object.end_of_sale }} {% else %} — {% endif %}
End of Support {% if object.end_of_support %} {{ object.end_of_support }} {% else %} — {% endif %}
End of Software Releases {% if object.end_of_sw_releases %} {{ object.end_of_sw_releases }} {% else %} — {% endif %}
End of Security Patches {% if object.end_of_security_patches %} {{ object.end_of_security_patches }} {% else %} — {% endif %}
Documentation URL {% if object.documentation_url %} {{ object.documentation_url }} {% else %} — {% endif %}
Comments {% if object.comments %}
{{ object.comments }}
{% 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 %}