mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-08 19:06:25 +00:00
126 lines
5.2 KiB
HTML
126 lines
5.2 KiB
HTML
{% comment %}
|
|
Re2o est un logiciel d'administration développé initiallement au rezometz. Il
|
|
se veut agnostique au réseau considéré, de manière à être installable en
|
|
quelques clics.
|
|
|
|
Copyright © 2017 Gabriel Détraz
|
|
Copyright © 2017 Goulven Kermarec
|
|
Copyright © 2017 Augustin Lemesle
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
{% endcomment %}
|
|
|
|
{% if machines_list.paginator %}
|
|
{% include "pagination.html" with list=machines_list %}
|
|
{% endif %}
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Actions</th>
|
|
<th>Proprietaire</th>
|
|
<th>Nom dns</th>
|
|
<th>Type</th>
|
|
<th>Mac</th>
|
|
<th>IP</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for machine in machines_list %}
|
|
{% for interface in machine.interface_set.all %}
|
|
<tr class="active">
|
|
{% if forloop.first %}
|
|
<td rowspan="{{ machine.interface_set.all|length }}">
|
|
{% include 'buttons/add.html' with href='machines:new-interface' id=machine.id desc='Ajouter une interface' %}
|
|
{% include 'buttons/suppr.html' with href='machines:del-machine' id=machine.id %}
|
|
{% include 'buttons/history.html' with href='machines:history' name='machine' id=machine.id %}
|
|
</td>
|
|
<td rowspan="{{ machine.interface_set.all|length }}">
|
|
<a href="{% url 'users:profil' userid=machine.user.id %}"><b>{{ machine.user }}</b></a>
|
|
</td>
|
|
{% endif %}
|
|
<td>
|
|
{% if interface.domain.related_domain.all %}
|
|
<div class="dropdown">
|
|
<button class="btn btn-default dropdown-toggle" type="button" id="editioninterface" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
|
|
{{ interface.domain }} <span class="caret"></span>
|
|
</button>
|
|
<ul class="dropdown-menu" aria-labelledby="editioninterface">
|
|
{% for al in interface.domain.related_domain.all %}
|
|
<li>
|
|
<a href="http://{{ al }}">
|
|
{{ al }}
|
|
<i class="glyphicon glyphicon-share-alt"></i>
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% else %}
|
|
{{ interface.domain }}
|
|
{% endif %}
|
|
</td>
|
|
<td>{{ interface.type }}</td>
|
|
<td>{{ interface.mac_address }}</td>
|
|
<td><b>IPv4</b> {{ interface.ipv4 }}
|
|
{% if ipv6_enabled %}
|
|
<br>
|
|
<b>IPv6</b> {{ interface.ipv6 }}
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
<div class="dropdown">
|
|
<button class="btn btn-default dropdown-toggle" type="button" id="editioninterface" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
|
|
Modifier <span class="caret"></span>
|
|
</button>
|
|
<ul class="dropdown-menu" aria-labelledby="editioninterface">
|
|
<li>
|
|
<a href="{% url 'machines:edit-interface' interface.id %}">
|
|
<i class="glyphicon glyphicon-edit"></i> Editer
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="{% url 'machines:index-alias' interface.id %}">
|
|
<i class="glyphicon glyphicon-edit"></i> Gerer les alias
|
|
</a>
|
|
</li>
|
|
{% if interface.may_have_port_open %}
|
|
<li>
|
|
<a href="{% url 'machines:port-config' interface.id%}">
|
|
<i class="glyphicon glyphicon-edit"></i> Gerer la configuration des ports
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
<li>
|
|
<a href="{% url 'machines:history' 'interface' interface.id %}">
|
|
<i class="glyphicon glyphicon-time"></i> Historique
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="{% url 'machines:del-interface' interface.id %}">
|
|
<i class="glyphicon glyphicon-trash"></i> Supprimer
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
<tr>
|
|
<td colspan="8"></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|