1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-10-31 19:44:16 +00:00
webvirtcloud/interfaces/templates/interface.html

98 lines
4.5 KiB
HTML
Raw Normal View History

2015-03-06 11:59:27 +00:00
{% extends "base.html" %}
{% load i18n %}
{% load bootstrap_icons %}
2020-10-15 14:18:45 +00:00
2015-03-06 11:59:27 +00:00
{% block title %}{% trans "Interface" %} - {{ iface }}{% endblock %}
2020-10-15 14:18:45 +00:00
{% block page_heading %}{% trans "Interface" %}: {{ iface }}{% endblock page_heading %}
2015-03-06 11:59:27 +00:00
{% block content %}
2019-07-31 08:03:48 +00:00
<div class="row">
<div class="col-lg-12">
<ol class="breadcrumb shadow-sm">
<li class="breadcrumb-item">
<a href="{% url 'overview' compute.id %}">{% bs_icon 'laptop' %} {% trans "Overview" %}</a>
2019-07-31 08:03:48 +00:00
</li>
2020-05-19 16:53:54 +00:00
<li class="breadcrumb-item">
<a href="{% url 'instances' compute.id %}">{% bs_icon 'server' %} {% trans "Instances" %}</a>
2019-07-31 08:03:48 +00:00
</li>
2020-05-19 16:53:54 +00:00
<li class="breadcrumb-item">
<a href="{% url 'storages' compute.id %}">{% bs_icon 'device-hdd' %} {% trans "Storages" %}</a>
2019-07-31 08:03:48 +00:00
</li>
2020-05-19 16:53:54 +00:00
<li class="breadcrumb-item">
<a href="{% url 'networks' compute.id %}">{% bs_icon 'hdd-network' %} {% trans "Networks" %}</a>
2019-07-31 08:03:48 +00:00
</li>
2020-05-19 16:53:54 +00:00
<li class="breadcrumb-item">
<a href="{% url 'interfaces' compute.id %}">{% bs_icon 'wifi' %} {% trans "Interfaces" %}</a>
2019-07-31 08:03:48 +00:00
</li>
2020-05-19 16:53:54 +00:00
<li class="breadcrumb-item">
<a href="{% url 'nwfilters' compute.id %}">{% bs_icon 'filter' %} {% trans "NWFilters" %}</a>
2019-07-31 08:03:48 +00:00
</li>
2020-05-19 16:53:54 +00:00
<li class="breadcrumb-item">
<a href="{% url 'virtsecrets' compute.id %}">{% bs_icon 'key' %} {% trans "Secrets" %}</a>
2019-07-31 08:03:48 +00:00
</li>
</ol>
</div>
</div>
2015-03-06 11:59:27 +00:00
2019-07-31 08:03:48 +00:00
<div class="row">
<dl class="ms-3 row">
2020-05-19 16:53:54 +00:00
<dt class="col-4">{% trans "Interface" %}</dt>
<dd class="col-8"><strong>{{ iface }}</strong></dd>
<dt class="col-4">{% trans "IPv4" %} ({% if ipv4 == None %}{% trans 'None' %}{% else %}{{ ipv4_type }}{% endif %})</dt>
2020-05-19 16:53:54 +00:00
<dd class="col-8">{{ ipv4 }}</dd>
<dt class="col-4">{% trans "IPv6" %} ({% if ipv6 == None %}{% trans 'None' %}{% else %}{{ ipv6_type }}{% endif %})</dt>
2020-05-19 16:53:54 +00:00
<dd class="col-8">{{ ipv6 }}</dd>
<dt class="col-4">{% trans "MAC" %}</dt>
<dd class="col-8">{{ mac }}</dd>
<dt class="col-4">{% trans "Interface Type" %}</dt>
<dd class="col-8">{{ itype }}</dd>
{% if itype == 'bridge' %}
2020-05-19 16:53:54 +00:00
<dt class="col-4">{% trans "Bridge Device" %}</dt>
<dd class="col-8">{{ bridge }}</dd>
{% endif %}
2020-05-19 16:53:54 +00:00
<dt class="col-4">{% trans "Boot Mode" %}</dt>
<dd class="col-8">{{ start_mode }}</dd>
<dt class="col-4">{% trans "State" %}</dt>
<dd class="col-8">
2020-05-26 13:18:38 +00:00
<form action="" method="post" role="form" aria-label="Interface start/stop/delete form">{% csrf_token %}
{% if state == 0 %}
2020-05-19 16:53:54 +00:00
<input type="submit" class="btn btn-sm btn-primary" name="start" value="{% trans "Start" %}">
<input type="submit" class="btn btn-sm btn-danger" name="delete" value="{% trans "Delete" %}" onclick="return confirm('{% trans "Are you sure?" %}')">
2019-07-31 08:03:48 +00:00
{% else %}
2020-05-19 16:53:54 +00:00
<input type="submit" class="btn btn-sm btn-secondary" name="stop" value="{% trans "Stop" %}" onclick="return confirm('{% trans "Are you sure?" %}')">
{% endif %}
2019-07-31 08:03:48 +00:00
</form>
2020-05-19 16:53:54 +00:00
</dd>
</dl>
<div class="col-sm-12">
2020-05-19 16:53:54 +00:00
<h5>{% trans 'Slaves' %}</h5>
{% if itype == 'bridge' %}
<table class="table table-bordered">
<thead>
2020-05-19 16:53:54 +00:00
<tr>
<th scope="col">{% trans 'MAC' %}</th>
<th scope="col">{% trans 'Name' %}</th>
<th scope="col">{% trans 'Type' %}</th>
<th scope="col">{% trans 'Speed' %}</th>
<th scope="col">{% trans 'State' %}</th>
</tr>
</thead>
<tbody>
{% for iface in slave_ifaces %}
<tr>
<td>{{ iface.mac }}</td>
<td>{{ iface.name }}</td>
<td>{{ iface.type }}</td>
<td>{{ iface.speed }}</td>
<td>{{ iface.state }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
</div>
2019-07-31 08:03:48 +00:00
</div>
2015-03-06 11:59:27 +00:00
{% endblock %}