{% extends 'generic/object.html' %} {% block content %}
{# ================= LEFT COLUMN ================= #}
{# --- Volume panel --- #}
Volume
Name
{{ object.name }}
Driver
{% if object.driver %}{{ object.driver }}{% else %}{% endif %}
Options
{% if object.options %}{{ object.options }}{% else %}{% endif %}
Labels
{% if object.label %}{{ object.label }}{% else %}{% endif %}
{# --- Tags panel --- #}
Tags
{% if object.tags.count %}
{% for tag in object.tags.all %} {{ tag.name }} {% endfor %}
{% else %} No tags {% endif %}
{# --- Comments panel --- #}
Comments
{% if object.comments %}
{{ object.comments }}
{% else %} No comments {% endif %}
{# ================= RIGHT COLUMN ================= #}
{# --- Devices panel --- #}
Devices
{% if object.devices.exists %}
{% for d in object.devices.all|dictsort:"name" %} {% endfor %}
Name Status Primary IPv4 Primary IPv6
{{ d }} {% with s=d.status %} {% if s == "active" %} {{ d.get_status_display }} {% elif s == "offline" %} {{ d.get_status_display }} {% elif s == "planned" or s == "staged" %} {{ d.get_status_display }} {% elif s == "failed" %} {{ d.get_status_display }} {% else %} {{ d.get_status_display }} {% endif %} {% endwith %} {% if d.primary_ip4 %} {{ d.primary_ip4 }} {% else %}{% endif %} {% if d.primary_ip6 %} {{ d.primary_ip6 }} {% else %}{% endif %}
{% else %} No devices associated. {% endif %}
{# --- Virtual Machines panel --- #}
Virtual Machines
{% if object.virtual_machines.exists %}
{% for vm in object.virtual_machines.all|dictsort:"name" %} {% endfor %}
Name Status Primary IPv4 Primary IPv6
{{ vm }} {% with s=vm.status %} {% if s == "active" %} {{ vm.get_status_display }} {% elif s == "offline" %} {{ vm.get_status_display }} {% elif s == "planned" or s == "staged" %} {{ vm.get_status_display }} {% else %} {{ vm.get_status_display }} {% endif %} {% endwith %} {% if vm.primary_ip4 %} {{ vm.primary_ip4 }} {% else %}{% endif %} {% if vm.primary_ip6 %} {{ vm.primary_ip6 }} {% else %}{% endif %}
{% else %} No virtual machines associated. {% endif %}
{% endblock %}