{% extends "core/base.html" %} {% block section_title %}{{ device }}{% endblock %} {% block content %}
{% block device_details %} {% include "devices/device_details_block.html" %} {% endblock %}
{% block warranty %} {% include "devices/warranty_block.html" %} {% endblock %}
{% block ips %} {% include "devices/ip_block.html" %} {% endblock %}

Host

{% if device.host %} {% else %}

add

{% endif %}

Operating System

{% if device.os %}
  • {{ device.os }} edit
{% else %}

add

{% endif %}

Software

    {% for software in software_relations %}
  • {{ software.software }} clear
  • {% endfor %}

add

{% block license %} {% include "licenses/license_block.html" %} {% endblock %}

Backup

add

Hardware

CPUs:

{% for cpu in cpu_relations %} {{ cpu.amount }}x {{ cpu.cpu }} clear
{% endfor %}

add

GPUs:

{% for gpu in gpu_relations %} {{ gpu.amount }}x {{ gpu.gpu }} clear
{% endfor %}

add

RAM Modules:

{% for module in ram_relations %} {{ module.amount }}x {{ module.ram }} clear
{% endfor %}

add

Disks:

{% for disk in disks_relations %} {{ disk.amount }}x {{ disk.disk }} clear
{% endfor %}

add

RAID

{% for raid, disks in raid_disk_pairs.items %} {% if disks %} {% for disk in disks %} {% endfor %} {% endif %}
Type: {{ raid.raid_type }}
Usable Space {{ raid.usable_space }}
Disk Type {{ disk.disk }}
Amount {{ disk.disk_amount }}
{% endfor %}

add

{% endblock %}