diff --git a/machines/templates/machines/aff_portlist.html b/machines/templates/machines/aff_portlist.html index 814e0b55..b01f407c 100644 --- a/machines/templates/machines/aff_portlist.html +++ b/machines/templates/machines/aff_portlist.html @@ -37,10 +37,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
-
+

{{ ports.name }}

-
+
{% can_edit ports %} {% include 'buttons/edit.html' with href='machines:edit-portlist' id=ports.id %} {% acl_end %} @@ -52,23 +52,29 @@ with this program; if not, write to the Free Software Foundation, Inc.,
-
- - - - - - - - - - - - - - - -
{% trans "TCP (input)" %}{% trans "TCP (output)" %}{% trans "UDP (input)" %}{% trans "UDP (output)" %}
{% for p in ports.tcp_ports_in %}{{ p.show_port }}, {% endfor %}{% for p in ports.tcp_ports_out %}{{ p.show_port }}, {% endfor %}{% for p in ports.udp_ports_in %}{{ p.show_port }}, {% endfor %}{% for p in ports.udp_ports_out %}{{ p.show_port }}, {% endfor %}
+
+
+
+ {% trans "TCP (input)" %} +
+ {% for p in ports.tcp_ports_in %}{{ p.show_port }}, {% endfor %} +
+
+ {% trans "TCP (output)" %} +
+ {% for p in ports.tcp_ports_out %}{{ p.show_port }}, {% endfor %} +
+
+ {% trans "UDP (input)" %} +
+ {% for p in ports.udp_ports_in %}{{ p.show_port }}, {% endfor %} +
+
+ {% trans "UDP (output)" %} +
+ {% for p in ports.udp_ports_out %}{{ p.show_port }}, {% endfor %} +
+