{% extends 'common/base.html' %} {% block title %}::Inventory::{{ object.name }}{% endblock %} {% block content %}
{% include 'navigation/inventory/sidebar.html' %}

{{ object.name }}

Responsible engineers: {% for person in object.responsible.all %} {{ person }}{% if not forloop.last %}, {% endif %} {% endfor %} {% if user in object.responsible.all %} {% else %} {% endif %}

{% if object.ssh_link %} {% endif %} {% if object.ipmi_link %} {% if object.ipmi_user and object.ipmi_password %}
{% else %} {% endif %} {% endif %} {% if object.zabbix_link %} {% endif %} {% if object.jira_issue %} {% endif %}
{% if object.type %} {% endif %} {% if object.location %} {% endif %} {% if object.hardware %} {% endif %} {% if object.memory %} {% endif %}
Type {{ object.type.name }}
Location {{ object.location_pretty }}
Hardware {{ object.hardware }}
Memory {{ object.memory }}
Created {{ object.created }}
Modified {{ object.modified }}
{% for attribute in object.attributes.all %} {% endfor %}
Name Value
{{ attribute.name }} {{ attribute.awesome_value|safe }}
{% for object in history %} {% endfor %}
{{ object.action_flag }} {{ object.action_time }} {{ object }}
{% endblock %}