diff options
author | ficus <ficus@robocracy.org> | 2012-09-15 19:46:49 +0200 |
---|---|---|
committer | ficus <ficus@robocracy.org> | 2012-09-15 19:46:49 +0200 |
commit | 42725426ec02d359b67cd8d665afe17882d38958 (patch) | |
tree | 148c4082998f7d0b82ec4f22515d7626fca6a0e7 /templates/wan.html | |
parent | a304d7a56563b16ca98d9b45ebed521c52f6347c (diff) | |
download | tui-42725426ec02d359b67cd8d665afe17882d38958.tar.gz tui-42725426ec02d359b67cd8d665afe17882d38958.zip |
more WIP
Diffstat (limited to 'templates/wan.html')
-rw-r--r-- | templates/wan.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/templates/wan.html b/templates/wan.html index e69de29..2da2733 100644 --- a/templates/wan.html +++ b/templates/wan.html @@ -0,0 +1,35 @@ +{% import "lib.html" as lib %} +{% extends "base.html" %} +{% block body %} + +<form action="/wan/" method="POST" class="form-horizontal"> +<legend>Upstream Ethernet Configuration</legend> + +<label class="radio"> + <input type="radio" name="ipv4method" id="ipv4methoddhcp" value="dhcp" {% if form.ipv4method == "dhcp" %}checked{% endif %}> + <h4>Automatic DHCP Addressing</h4> +</label> + +<label class="radio"> + <input type="radio" name="ipv4method" id="ipv4methodstatic" value="static" {% if form.ipv4method == "static" %}checked{% endif %}> + <h4>Manual Addressing</h4> +</label> + +{{ lib.forminput(form, formerr, 'ipv4addr', 'IPv4 Address', '0.0.0.0') }} +{{ lib.forminput(form, formerr, 'ipv4netmask', 'Netmask', '255.255.255.0') }} +{{ lib.forminput(form, formerr, 'ipv4gateway', 'Gateway IP Address', '0.0.0.0') }} + +<label class="radio"> + <input type="radio" name="ipv4method" id="ipv4methoddisabled" value="disabled" {% if form.ipv4method == "disabled" %}checked{% endif %}> + <h4>Disable Interface</h4> +</label> + +<div class="pull-right"> +<a href="."><button class="btn" type="button">Reset</button></a> +<button type="submit" class="btn btn-primary" type="button"> +Save</button> +</div> +</form> + + +{% endblock %} |