|
|
@@ -1,199 +1 @@
|
|
|
{% extends 'virtualization/virtualmachine/base.html' %}
|
|
|
-{% load buttons %}
|
|
|
-{% load static %}
|
|
|
-{% load helpers %}
|
|
|
-{% load plugins %}
|
|
|
-{% load i18n %}
|
|
|
-
|
|
|
-{% block content %}
|
|
|
-<div class="row my-3">
|
|
|
- <div class="col col-12 col-md-6">
|
|
|
- <div class="card">
|
|
|
- <h2 class="card-header">{% trans "Virtual Machine" %}</h2>
|
|
|
- <table class="table table-hover attr-table">
|
|
|
- <tr>
|
|
|
- <th scope="row">{% trans "Name" %}</th>
|
|
|
- <td>{{ object }}</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">{% trans "Status" %}</th>
|
|
|
- <td>{% badge object.get_status_display bg_color=object.get_status_color %}</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">{% trans "Start on boot" %}</th>
|
|
|
- <td>{% badge object.get_start_on_boot_display bg_color=object.get_start_on_boot_color %}</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">{% trans "Role" %}</th>
|
|
|
- <td>{{ object.role|linkify|placeholder }}</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">{% trans "Platform" %}</th>
|
|
|
- <td>{{ object.platform|linkify|placeholder }}</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">{% trans "Description" %}</th>
|
|
|
- <td>{{ object.description|placeholder }}</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">{% trans "Serial Number" %}</th>
|
|
|
- <td>{{ object.serial|placeholder }}</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">{% trans "Tenant" %}</th>
|
|
|
- <td>
|
|
|
- {% if object.tenant.group %}
|
|
|
- {{ object.tenant.group|linkify }} /
|
|
|
- {% endif %}
|
|
|
- {{ object.tenant|linkify|placeholder }}
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">{% trans "Config Template" %}</th>
|
|
|
- <td>{{ object.config_template|linkify|placeholder }}</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">{% trans "Primary IPv4" %}</th>
|
|
|
- <td>
|
|
|
- {% if object.primary_ip4 %}
|
|
|
- <a href="{% url 'ipam:ipaddress' pk=object.primary_ip4.pk %}" id="primary_ip4">{{ object.primary_ip4.address.ip }}</a>
|
|
|
- {% if object.primary_ip4.nat_inside %}
|
|
|
- ({% trans "NAT for" %} <a href="{{ object.primary_ip4.nat_inside.get_absolute_url }}">{{ object.primary_ip4.nat_inside.address.ip }}</a>)
|
|
|
- {% elif object.primary_ip4.nat_outside.exists %}
|
|
|
- ({% trans "NAT" %}: {% for nat in object.primary_ip4.nat_outside.all %}<a href="{{ nat.get_absolute_url }}">{{ nat.address.ip }}</a>{% if not forloop.last %}, {% endif %}{% endfor %})
|
|
|
- {% endif %}
|
|
|
- {% copy_content "primary_ip4" %}
|
|
|
- {% else %}
|
|
|
- {{ ''|placeholder }}
|
|
|
- {% endif %}
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">{% trans "Primary IPv6" %}</th>
|
|
|
- <td>
|
|
|
- {% if object.primary_ip6 %}
|
|
|
- <a href="{% url 'ipam:ipaddress' pk=object.primary_ip6.pk %}" id="primary_ip6">{{ object.primary_ip6.address.ip }}</a>
|
|
|
- {% if object.primary_ip6.nat_inside %}
|
|
|
- ({% trans "NAT for" %} <a href="{{ object.primary_ip6.nat_inside.get_absolute_url }}">{{ object.primary_ip6.nat_inside.address.ip }}</a>)
|
|
|
- {% elif object.primary_ip6.nat_outside.exists %}
|
|
|
- ({% trans "NAT" %}: {% for nat in object.primary_ip6.nat_outside.all %}<a href="{{ nat.get_absolute_url }}">{{ nat.address.ip }}</a>{% if not forloop.last %}, {% endif %}{% endfor %})
|
|
|
- {% endif %}
|
|
|
- {% copy_content "primary_ip6" %}
|
|
|
- {% else %}
|
|
|
- {{ ''|placeholder }}
|
|
|
- {% endif %}
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </div>
|
|
|
- {% include 'inc/panels/custom_fields.html' %}
|
|
|
- {% include 'inc/panels/tags.html' %}
|
|
|
- {% include 'inc/panels/comments.html' %}
|
|
|
- {% plugin_left_page object %}
|
|
|
- </div>
|
|
|
- <div class="col col-12 col-md-6">
|
|
|
- <div class="card">
|
|
|
- <h2 class="card-header">{% trans "Cluster" %}</h2>
|
|
|
- <table class="table table-hover attr-table">
|
|
|
- <tr>
|
|
|
- <th scope="row">{% trans "Site" %}</th>
|
|
|
- <td>
|
|
|
- {{ object.site|linkify|placeholder }}
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">{% trans "Cluster" %}</th>
|
|
|
- <td>
|
|
|
- {% if object.cluster.group %}
|
|
|
- {{ object.cluster.group|linkify }} /
|
|
|
- {% endif %}
|
|
|
- {{ object.cluster|linkify|placeholder }}
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">{% trans "Cluster Type" %}</th>
|
|
|
- <td>
|
|
|
- {{ object.cluster.type|linkify|placeholder }}
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">{% trans "Device" %}</th>
|
|
|
- <td>
|
|
|
- {{ object.device|linkify|placeholder }}
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </div>
|
|
|
- <div class="card">
|
|
|
- <h2 class="card-header">{% trans "Resources" %}</h2>
|
|
|
- <table class="table table-hover attr-table">
|
|
|
- <tr>
|
|
|
- <th scope="row"><i class="mdi mdi-gauge"></i> {% trans "Virtual CPUs" %}</th>
|
|
|
- <td>{{ object.vcpus|placeholder }}</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row"><i class="mdi mdi-chip"></i> {% trans "Memory" %}</th>
|
|
|
- <td>
|
|
|
- {% if object.memory %}
|
|
|
- <span title={{ object.memory }}>{{ object.memory|humanize_ram_megabytes }}</span>
|
|
|
- {% else %}
|
|
|
- {{ ''|placeholder }}
|
|
|
- {% endif %}
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th scope="row">
|
|
|
- <i class="mdi mdi-harddisk"></i> {% trans "Disk Space" %}
|
|
|
- </th>
|
|
|
- <td>
|
|
|
- {% if object.disk %}
|
|
|
- {{ object.disk|humanize_disk_megabytes }}
|
|
|
- {% else %}
|
|
|
- {{ ''|placeholder }}
|
|
|
- {% endif %}
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </div>
|
|
|
- <div class="card">
|
|
|
- <h2 class="card-header">
|
|
|
- {% trans "Application Services" %}
|
|
|
- {% if perms.ipam.add_service %}
|
|
|
- <div class="card-actions">
|
|
|
- <a href="{% url 'ipam:service_add' %}?parent_object_type={{ object|content_type_id }}&parent={{ object.pk }}" class="btn btn-ghost-primary btn-sm">
|
|
|
- <span class="mdi mdi-plus-thick" aria-hidden="true"></span> {% trans "Add an application service" %}
|
|
|
- </a>
|
|
|
- </div>
|
|
|
- {% endif %}
|
|
|
- </h2>
|
|
|
- {% htmx_table 'ipam:service_list' virtual_machine_id=object.pk %}
|
|
|
- </div>
|
|
|
- {% include 'inc/panels/image_attachments.html' %}
|
|
|
- {% plugin_right_page object %}
|
|
|
- </div>
|
|
|
-</div>
|
|
|
-
|
|
|
-<div class="row">
|
|
|
- <div class="col col-md-12">
|
|
|
- <div class="card">
|
|
|
- <h2 class="card-header">
|
|
|
- {% trans "Virtual Disks" %}
|
|
|
- {% if perms.virtualization.add_virtualdisk %}
|
|
|
- <div class="card-actions">
|
|
|
- <a href="{% url 'virtualization:virtualdisk_add' %}?device={{ object.device.pk }}&virtual_machine={{ object.pk }}&return_url={{ object.get_absolute_url }}" class="btn btn-ghost-primary btn-sm">
|
|
|
- <span class="mdi mdi-plus-thick" aria-hidden="true"></span> {% trans "Add Virtual Disk" %}
|
|
|
- </a>
|
|
|
- </div>
|
|
|
- {% endif %}
|
|
|
- </h2>
|
|
|
- {% htmx_table 'virtualization:virtualdisk_list' virtual_machine_id=object.pk %}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-</div>
|
|
|
-
|
|
|
-<div class="row">
|
|
|
- <div class="col col-md-12">
|
|
|
- {% plugin_full_width_page object %}
|
|
|
- </div>
|
|
|
-</div>
|
|
|
-{% endblock %}
|