{% extends 'generic/object_detail.html' %} {% block masthead %}

Hardware Notice: {% block title %}{{ object }}{% endblock %}

{% endblock masthead %} {% block content_left_page %}
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 %}
{% endblock %}