{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% block title %}{{ object }}{% endblock %} {% block header %}
| Devices | {% for device in devices %} {{ device }}{% if not forloop.last %}, {% endif %} {% endfor %} | ||
| Device Type | {{ object.device_type }} | {% elif object.inventory_item %}Inventory Item | {{ object.inventory_item }} | {% endif %}
| 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 %}
|