{% extends "machines/sidebar.html" %} {% load bootstrap3 %} {% load acl %} {% block title %}Configuration de ports{% endblock %} {% block content %}

Liste des configurations de ports

{% can_create OuverturePortList %} Ajouter une configuration {% acl_end %} {% for pl in port_list %} {%endfor%}
Nom TCP (entrée) TCP (sortie) UDP (entrée) UDP (sortie) Machines
{{pl.name}} {% for p in pl.tcp_ports_in %}{{p.show_port}}, {%endfor%} {% for p in pl.tcp_ports_out %}{{p.show_port}}, {%endfor%} {% for p in pl.udp_ports_in %}{{p.show_port}}, {%endfor%} {% for p in pl.udp_ports_out %}{{p.show_port}}, {%endfor%} {% if pl.interface_set.all %} {% endif %} {% can_delete pl %} {% include 'buttons/suppr.html' with href='machines:del-portlist' id=pl.id %} {% acl_end %} {% can_edit pl %} {% include 'buttons/edit.html' with href='machines:edit-portlist' id=pl.id %} {% acl_end %}



{% endblock %}