1
Fork 0
mirror of https://github.com/Steffo99/estus.git synced 2024-11-22 15:44:19 +00:00
estus/templates/net/show.htm

22 lines
1.2 KiB
HTML
Raw Normal View History

{% extends "base.htm" %}
2017-09-18 14:31:17 +00:00
{% block title %}Modifica rete • estus{% endblock %}
{% block content %}
2017-09-20 10:01:07 +00:00
<div class="page-header">
<h1>
{% if action == "add" %}
Aggiungi rete
{% elif action == "show" %}
Modifica rete
{% endif %}
</h1>
</div>
2017-09-18 14:31:17 +00:00
<form class="form-inline" {% if net %}action="/net_show/{{ net.nid }}"{% endif %} method="post">
<input class="form-control" type="text" placeholder="Nome rete" name="nome" {% if net %}value="{{ net.nome }}"{% endif %}>
<input class="form-control" type="text" placeholder="Network IP" name="network_ip" {% if net %}value="{{ net.network_ip }}"{% endif %}>
<input class="form-control" type="text" placeholder="Subnet mask" name="subnet" {% if net %}value="{{ net.subnet }}"{% endif %}>
<input class="form-control" type="text" placeholder="DNS primario" name="primary_dns" {% if net %}value="{{ net.primary_dns }}"{% endif %}>
<input class="form-control" type="text" placeholder="DNS secondario" name="secondary_dns" {% if net %}value="{{ net.secondary_dns }}"{% endif %}>
<input class="btn btn-primary" type="submit">
</form>
{% endblock %}