2015-03-06 11:59:27 +00:00
|
|
|
{% load i18n %}
|
2015-03-03 09:34:09 +00:00
|
|
|
{% if request.user.is_superuser %}
|
2021-07-07 11:12:38 +00:00
|
|
|
<a href="#AddInterface" type="button" class="btn btn-success float-end" data-bs-toggle="modal">
|
2020-05-19 16:53:54 +00:00
|
|
|
<span class="fa fa-plus" aria-hidden="true"></span>
|
2015-03-06 11:59:27 +00:00
|
|
|
</a>
|
|
|
|
|
|
|
|
<!-- Modal Secret -->
|
|
|
|
<div class="modal fade" id="AddInterface" tabindex="-1" role="dialog" aria-labelledby="AddInterface" aria-hidden="true">
|
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
2020-05-19 16:53:54 +00:00
|
|
|
<h5 class="modal-title">{% trans "Create New Interface" %}</h5>
|
2021-07-07 11:12:38 +00:00
|
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
2015-03-06 11:59:27 +00:00
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
2020-05-26 13:18:38 +00:00
|
|
|
<form method="post" action="" role="form" aria-label="Create New Interface form">{% csrf_token %}
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="row">
|
2020-05-19 16:53:54 +00:00
|
|
|
<label class="col-sm-3 col-form-label">{% trans "Name" %}</label>
|
2015-03-06 11:59:27 +00:00
|
|
|
<div class="col-sm-6">
|
|
|
|
<input type="text" name="name" class="form-control" placeholder="br0" maxlength="10" required pattern="[a-z0-9\. ]+"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="row">
|
2020-05-19 16:53:54 +00:00
|
|
|
<label class="col-sm-3 col-form-label">{% trans "Start mode" %}</label>
|
2015-03-06 11:59:27 +00:00
|
|
|
<div class="col-sm-6">
|
2021-07-07 11:12:38 +00:00
|
|
|
<select name="start_mode" class="form-select">
|
2015-03-06 11:59:27 +00:00
|
|
|
<option value="none">{% trans "none" %}</option>
|
|
|
|
<option value="onboot">{% trans "onboot" %}</option>
|
|
|
|
<option value="hotplug">{% trans "hotplug" %}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="row">
|
2020-05-19 16:53:54 +00:00
|
|
|
<label class="col-sm-3 col-form-label">{% trans "Device" %}</label>
|
2015-03-06 11:59:27 +00:00
|
|
|
<div class="col-sm-6">
|
2021-07-07 11:12:38 +00:00
|
|
|
<select name="netdev" class="form-select">
|
2015-03-06 11:59:27 +00:00
|
|
|
{% for dev in netdevs %}
|
|
|
|
<option value="{{ dev }}">{{ dev }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="row">
|
2020-05-19 16:53:54 +00:00
|
|
|
<label class="col-sm-3 col-form-label">{% trans "Type" %}</label>
|
2015-03-06 11:59:27 +00:00
|
|
|
<div class="col-sm-6">
|
2021-07-07 11:12:38 +00:00
|
|
|
<select name="itype" class="form-select" id="itype">
|
2015-03-06 11:59:27 +00:00
|
|
|
<option value="bridge">{% trans "bridge" %}</option>
|
|
|
|
<option value="ethernet">{% trans "ethernet" %}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="row bridge_name_form_group">
|
2020-05-19 16:53:54 +00:00
|
|
|
<label class="col-sm-3 col-form-label">{% trans "STP" %}</label>
|
2015-03-06 11:59:27 +00:00
|
|
|
|
|
|
|
<div class="col-sm-6">
|
2021-07-07 11:12:38 +00:00
|
|
|
<select name="stp" class="form-select">
|
2015-03-06 11:59:27 +00:00
|
|
|
<option value="on">{% trans "on" %}</option>
|
|
|
|
<option value="off">{% trans "off" %}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="row bridge_name_form_group">
|
2020-05-19 16:53:54 +00:00
|
|
|
<label class="col-sm-3 col-form-label">{% trans "Delay" %}</label>
|
2015-03-06 11:59:27 +00:00
|
|
|
<div class="col-sm-6">
|
|
|
|
<input type="text" name="delay" class="form-control" value="0" maxlength="3" required pattern="[0-9]+"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="tabbable">
|
2020-05-26 13:18:38 +00:00
|
|
|
<ul class="nav nav-tabs" aria-label="IP types">
|
2021-07-07 11:12:38 +00:00
|
|
|
<li class="nav-item" role="presentation">
|
|
|
|
<button class="nav-link active" data-bs-toggle="tab" data-bs-target="#ipv4tab" type="button" role="tab" aria-controls="ipv4tab" aria-selected="true">
|
|
|
|
{% trans "IPv4" %}
|
|
|
|
</button>
|
2020-05-19 16:53:54 +00:00
|
|
|
</li>
|
2021-07-07 11:12:38 +00:00
|
|
|
<li class="nav-item" role="presentation">
|
|
|
|
<button class="nav-link" data-bs-toggle="tab" data-bs-target="#ipv6tab" type="button" role="tab" aria-controls="ipv6tab" aria-selected="false">
|
|
|
|
{% trans "IPv6" %}
|
|
|
|
</button>
|
2015-03-06 11:59:27 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="tab-content">
|
2020-05-19 16:53:54 +00:00
|
|
|
<div class="tab-pane active" id="ipv4tab">
|
2015-03-06 11:59:27 +00:00
|
|
|
<div class="modal-body">
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="row">
|
2020-05-19 16:53:54 +00:00
|
|
|
<label class="col-sm-3 col-form-label">{% trans "IPv4 Mode" %}</label>
|
2015-03-06 11:59:27 +00:00
|
|
|
<div class="col-sm-6">
|
2021-07-07 11:12:38 +00:00
|
|
|
<select name="ipv4_type" class="form-select" id="ipv4">
|
2015-03-06 11:59:27 +00:00
|
|
|
<option value="dhcp">{% trans "DHCP" %}</option>
|
|
|
|
<option value="static">{% trans "Static" %}</option>
|
|
|
|
<option value="none">{% trans "No configuration" %}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="row static_ipv4_form_group">
|
2020-05-19 16:53:54 +00:00
|
|
|
<label class="col-sm-3 col-form-label">{% trans "IPv4 Address" %}</label>
|
2015-03-06 11:59:27 +00:00
|
|
|
<div class="col-sm-6">
|
|
|
|
<input type="text" class="form-control" name="ipv4_addr" maxlength="19" pattern="[0-9\.\/]+">
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="row static_ipv4_form_group">
|
2020-05-19 16:53:54 +00:00
|
|
|
<label class="col-sm-3 col-form-label">{% trans "IPv4 Gateway" %}</label>
|
2015-03-06 11:59:27 +00:00
|
|
|
<div class="col-sm-6">
|
|
|
|
<input type="text" class="form-control" name="ipv4_gw" maxlength="16" pattern="[0-9\.]+">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-05-19 16:53:54 +00:00
|
|
|
<div class="tab-pane" id="ipv6tab">
|
2015-03-06 11:59:27 +00:00
|
|
|
<div class="modal-body">
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="row">
|
2020-05-19 16:53:54 +00:00
|
|
|
<label class="col-sm-3 col-form-label">{% trans "IPv6 Mode" %}</label>
|
2015-03-06 11:59:27 +00:00
|
|
|
<div class="col-sm-6">
|
2021-07-07 11:12:38 +00:00
|
|
|
<select name="ipv6_type" class="form-select" id="ipv6">
|
2015-03-06 11:59:27 +00:00
|
|
|
<option value="none">{% trans "No configuration" %}</option>
|
|
|
|
<option value="dhcp">{% trans "DHCP" %}</option>
|
|
|
|
<option value="static">{% trans "Static" %}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="row static_ipv6_form_group">
|
2020-05-19 16:53:54 +00:00
|
|
|
<label class="col-sm-3 col-form-label">{% trans "IPv6 Address" %}</label>
|
2015-03-06 11:59:27 +00:00
|
|
|
<div class="col-sm-6">
|
|
|
|
<input type="text" class="form-control" name="ipv6_addr" maxlength="100" pattern="[0-9a-f\:\/]+">
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="row static_ipv6_form_group">
|
2020-05-19 16:53:54 +00:00
|
|
|
<label class="col-sm-3 col-form-label">{% trans "IPv6 Gateway" %}</label>
|
2015-03-06 11:59:27 +00:00
|
|
|
<div class="col-sm-6">
|
|
|
|
<input type="text" class="form-control" name="ipv6_gw" maxlength="100" pattern="[0-9a-f\:]+">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
2021-07-07 11:12:38 +00:00
|
|
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">
|
2015-03-06 11:59:27 +00:00
|
|
|
{% trans "Close" %}
|
|
|
|
</button>
|
|
|
|
<button type="submit" class="btn btn-primary" name="create">
|
|
|
|
{% trans "Create" %}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div> <!-- /.modal-content -->
|
|
|
|
</div> <!-- /.modal-dialog -->
|
|
|
|
</div><!-- /.modal -->
|
2015-03-03 09:34:09 +00:00
|
|
|
{% endif %}
|