{% extends "inventory/base.html" %} {% block section_title %}{{ computer.name }}{% endblock %} {% block content %}
Description

{{ computer.description }}

OS: {{ computer.os }}
Serial Number: {{ computer.serialnumber }}
Category: {{ computer.category }}
Owner: {{ computer.owner }}
Customer: {{ computer.customer }}
Manufacturer: {{ computer.manufacturer }}
Location: {{ computer.location }}
User: {{ computer.user }}
Installation Date: {{ computer.installation_date }}
IPs: {% for net_id, ip in computer.ips.items %} {{ip}}
{% endfor %}
{% if software_list or backup_list %}
{% if software_list %}
Software
    {% for software in software_list %}
  • {{ software.software }}
  • {% endfor %}
{% endif %} {% if backup_list %}
Backup
{% endif %}
{% endif %} {% if cpu_list or ram_list or disks_list or raid_relations or computer.host %}
Hardware
{% endif %} {% endif %} {% endif %}
CPUs: {% if cpu_list %} {% for cpu in cpu_list %} {{ cpu.amount }}x {{ cpu.cpu }}
{% endfor %}
RAM Modules: {% if ram_list %} {% for module in ram_list %} {{ module.amount }}x {{ module.ram }}
{% endfor %}
Disks: {% if disks_list %} {% for disk in disks_list %} {{ disk.amount }}x {{ disk.disk }}
{% endfor %}
{% if raid_relations %}
RAID
{% for raid in raid_relations %}
Type: {{ raid.raid_type }}
Usable Space {{ raid.usable_space}}
{% endfor %} {% endif %} {% if computer.host %}
Host
{% endif %}
{% endif %}
{% endblock %}