2017-09-29 20:28:48 +00:00
|
|
|
{% extends "machines/sidebar.html" %}
|
|
|
|
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
|
|
|
|
{% block title %}Configuration de ports{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h2>Liste des configurations de ports</h2>
|
|
|
|
<a class="btn btn-primary btn-sm" role="button" href="#"><i class="glyphicon glyphicon-plus"></i>Ajouter une configuration</a>
|
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Nom</th>
|
2017-10-01 09:39:39 +00:00
|
|
|
<th>TCP (entrée)</th>
|
|
|
|
<th>TCP (sortie)</th>
|
|
|
|
<th>UDP (entrée)</th>
|
|
|
|
<th>UDP (sortie)</th>
|
2017-09-29 20:28:48 +00:00
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for pl in port_list %}
|
|
|
|
<tr>
|
|
|
|
<td>{{pl.name}}</td>
|
2017-10-01 09:39:39 +00:00
|
|
|
<td>{% for p in pl.tcp_ports_in %}{{p.show_port}}, {%endfor%}</td>
|
|
|
|
<td>{% for p in pl.tcp_ports_out %}{{p.show_port}}, {%endfor%}</td>
|
|
|
|
<td>{% for p in pl.udp_ports_in %}{{p.show_port}}, {%endfor%}</td>
|
|
|
|
<td>{% for p in pl.udp_ports_out %}{{p.show_port}}, {%endfor%}</td>
|
2017-09-29 20:28:48 +00:00
|
|
|
<td class="text-right">
|
|
|
|
{%comment%}
|
|
|
|
{% include 'buttons/suppr.html' href='machines:del-portlist' id=pl.id %}
|
|
|
|
{%endcomment%}
|
2017-09-30 08:04:18 +00:00
|
|
|
{% include 'buttons/edit.html' with href='machines:edit-portlist' id=pl.id %}
|
2017-09-29 20:28:48 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{%endfor%}
|
|
|
|
</table>
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
|
|
|
|
{% endblock %}
|