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
2017-09-18 16:41:32 +02:00

19 lines
1.1 KiB
HTML

{% extends "base.htm" %}
{% block title %}Modifica rete • estus{% endblock %}
{% block content %}
<h1>
{% if action == "add" %}
Aggiungi rete
{% elif action == "show" %}
Modifica rete
{% endif %}
</h1>
<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 %}