mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-16 08:23:12 +00:00
20 lines
569 B
HTML
20 lines
569 B
HTML
{% extends 'machines/sidebar.html' %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% load acl %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Machines" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>{% trans "List of ports configurations" %}</h2>
|
|
{% can_create OuverturePortList %}
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'machines:add-portlist' %}">
|
|
<i class="fa fa-plus"></i> {% trans "Add a configuration" %}
|
|
</a>
|
|
{% acl_end %}
|
|
<h2></h2>
|
|
|
|
{% include 'machines/aff_portlist.html' with port_list=port_list %}
|
|
{% endblock %}
|