2017-01-15 23:07:42 +00:00
{% 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 %}
2017-12-27 23:05:31 +00:00
{% load acl %}
2016-10-07 21:40:44 +00:00
{% if machines_list.paginator %}
2016-11-16 19:55:28 +00:00
{% include "pagination.html" with list=machines_list %}
{% endif %}
2016-07-22 01:25:04 +00:00
2018-01-01 22:04:26 +00:00
< table class = "table" id = "machines_table" >
2017-10-07 21:48:23 +00:00
< colgroup >
< col >
< col >
< col >
< col width = "{% if ipv6_enabled %}300{% else %}150{% endif %}px" >
< col width = "144px" >
< / colgroup >
2016-11-16 19:55:28 +00:00
< thead >
2017-10-22 15:48:35 +00:00
< th > {% include "buttons/sort.html" with prefix='machine' col='name' text='Nom DNS' %}< / th >
2017-10-07 21:48:23 +00:00
< th > Type< / th >
< th > MAC< / th >
< th > IP< / th >
< th > Actions< / th >
< tbody >
2016-11-16 19:55:28 +00:00
{% for machine in machines_list %}
2017-10-07 21:48:23 +00:00
< tr class = "info" >
< td colspan = "4" >
2017-10-22 00:33:44 +00:00
< b > {{ machine.name|default:'< i > Pas de nom< / i > ' }}< / b > < i class = "glyphicon glyphicon-chevron-right" > < / i >
2017-10-07 21:48:23 +00:00
< a href = "{% url 'users:profil' userid=machine.user.id %}" title = "Voir le profil" >
< i class = "glyphicon glyphicon-user" > < / i > {{ machine.user }}
< / a >
< / td >
< td class = "text-right" >
2017-12-27 23:05:31 +00:00
{% can_create Interface machine.id %}
2016-11-18 10:53:10 +00:00
{% include 'buttons/add.html' with href='machines:new-interface' id=machine.id desc='Ajouter une interface' %}
2017-12-27 23:05:31 +00:00
{% acl_end %}
2016-11-18 10:53:10 +00:00
{% include 'buttons/history.html' with href='machines:history' name='machine' id=machine.id %}
2017-12-27 23:05:31 +00:00
{% can_delete machine %}
2017-10-07 21:48:23 +00:00
{% include 'buttons/suppr.html' with href='machines:del-machine' id=machine.id %}
2017-12-27 23:05:31 +00:00
{% acl_end %}
2016-11-16 19:55:28 +00:00
< / td >
2017-10-07 21:48:23 +00:00
< / tr >
{% for interface in machine.interface_set.all %}
< tr >
2016-11-19 01:13:19 +00:00
< td >
2016-12-24 19:04:53 +00:00
{% if interface.domain.related_domain.all %}
2018-01-01 22:04:26 +00:00
{{ interface.domain }}
< button class = "btn btn-default btn-xs" type = "button" data-toggle = "collapse" data-target = "#collapseDomain_{{interface.id}}" aria-expanded = "true" aria-controls = "collapseDomain_{{interface.id}}" >
Afficher les alias
< / button >
2016-11-19 01:13:19 +00:00
{% else %}
2016-12-24 19:04:53 +00:00
{{ interface.domain }}
2016-11-19 01:13:19 +00:00
{% endif %}
< / td >
2016-11-16 19:55:28 +00:00
< td >
2017-10-07 21:48:23 +00:00
{{ interface.type }}
< / td >
< td >
{{ interface.mac_address }}
< / td >
< td >
< b > IPv4< / b > {{ interface.ipv4 }}
< br >
{% if ipv6_enabled and interface.ipv6 != 'None'%}
< b > IPv6< / b > {{ interface.ipv6 }}
{% endif %}
< / td >
< td class = "text-right" >
< div class = "dropdown" style = "width: 128px;" >
< button class = "btn btn-primary btn-sm dropdown-toggle" type = "button" id = "editioninterface" data-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "true" >
< i class = "glyphicon glyphicon-edit" > < / i > < span class = "caret" > < / span >
2016-11-16 19:55:28 +00:00
< / button >
2017-10-07 21:48:23 +00:00
{% include 'buttons/history.html' with href='machines:history' name='interface' id=interface.id %}
2017-12-27 23:05:31 +00:00
{% can_delete interface %}
2017-10-07 21:48:23 +00:00
{% include 'buttons/suppr.html' with href='machines:del-interface' id=interface.id %}
2017-12-27 23:05:31 +00:00
{% acl_end %}
< ul class = "dropdown-menu" aria-labelledby = "editioninterface" >
{% can_edit interface %}
< li >
2016-11-16 19:55:28 +00:00
< a href = "{% url 'machines:edit-interface' interface.id %}" >
< i class = "glyphicon glyphicon-edit" > < / i > Editer
< / a >
< / li >
2017-12-27 23:05:31 +00:00
{% acl_end %}
{% can_create Domain interface.id %}
2016-11-16 19:55:28 +00:00
< li >
2016-11-19 20:15:43 +00:00
< a href = "{% url 'machines:index-alias' interface.id %}" >
< i class = "glyphicon glyphicon-edit" > < / i > Gerer les alias
< / a >
< / li >
2017-12-27 23:05:31 +00:00
{% acl_end %}
{% can_create OuverturePortList %}
2016-11-16 19:55:28 +00:00
< li >
2017-10-07 21:48:23 +00:00
< a href = "{% url 'machines:port-config' interface.id%}" >
< i class = "glyphicon glyphicon-edit" > < / i > Gerer la configuration des ports
2016-11-16 19:55:28 +00:00
< / a >
< / li >
2017-12-27 23:05:31 +00:00
{% acl_end %}
2016-11-16 19:55:28 +00:00
< / ul >
< / div >
< / td >
2016-07-04 00:48:24 +00:00
< / tr >
2018-01-01 22:04:26 +00:00
{% if interface.domain.related_domain.all %}
< tr >
< td colspan = 5 style = "border-top: none; padding: 1px;" >
< div class = "collapse in" id = "collapseDomain_{{interface.id}}" >
< ul class = "list-group" style = "margin-bottom: 0px;" >
{% for al in interface.domain.related_domain.all %}
< li class = "list-group-item col-xs-6 col-sm-4 col-md-3" style = "border: none;" >
< a href = "http://{{ al }}" >
{{ al }}
< i class = "glyphicon glyphicon-share-alt" > < / i >
< / a >
< / li >
{% endfor %}
< / ul >
< / div >
< / td >
< tr >
{% endif %}
2016-07-04 00:48:24 +00:00
{% endfor %}
2016-11-16 19:55:28 +00:00
< tr >
< td colspan = "8" > < / td >
< / tr >
{% endfor %}
2017-10-07 21:48:23 +00:00
< / tbody >
2016-11-16 19:55:28 +00:00
< / table >
2016-07-04 00:48:24 +00:00
2018-01-01 22:04:26 +00:00
< script >
$("#machines_table").ready( function() {
var alias_div = [{% for machine in machines_list %}{% for interface in machine.interface_set.all %}{% if interface.domain.related_domain.all %}$("#collapseDomain_{{interface.id}}"), {% endif %}{% endfor %}{% endfor %}];
for (var i=0 ; i< alias_div.length ; i + + ) {
alias_div[i].collapse('hide');
}
} );
< / script >
2017-11-14 21:23:39 +00:00
{% if machines_list.paginator %}
{% include "pagination.html" with list=machines_list %}
{% endif %}