summaryrefslogtreecommitdiffstats
path: root/templates/serversetup/ipaddress.html
diff options
context:
space:
mode:
authorSimon Rettberg2014-10-27 16:15:02 +0100
committerSimon Rettberg2014-10-27 16:15:02 +0100
commit2f23a77244d02468a4d59c1581c5a7b4fb526a3a (patch)
treee3e723a5dc15451d71cc7a0102ba5d411204cd7a /templates/serversetup/ipaddress.html
parentAdd SLX_BENCHMARK_VM to settings (diff)
downloadslx-admin-2f23a77244d02468a4d59c1581c5a7b4fb526a3a.tar.gz
slx-admin-2f23a77244d02468a4d59c1581c5a7b4fb526a3a.tar.xz
slx-admin-2f23a77244d02468a4d59c1581c5a7b4fb526a3a.zip
No reason to put a container into a container everywhere
Diffstat (limited to 'templates/serversetup/ipaddress.html')
-rw-r--r--templates/serversetup/ipaddress.html64
1 files changed, 31 insertions, 33 deletions
diff --git a/templates/serversetup/ipaddress.html b/templates/serversetup/ipaddress.html
index acfbb408..e4967703 100644
--- a/templates/serversetup/ipaddress.html
+++ b/templates/serversetup/ipaddress.html
@@ -1,36 +1,34 @@
-<div class="container">
- <div class="panel panel-default">
- <div class="panel-heading">
- {{lang_bootAddress}}
- </div>
- <div class="panel-body">
+<div class="panel panel-default">
+ <div class="panel-heading">
+ {{lang_bootAddress}}
+ </div>
+ <div class="panel-body">
+ <p>
+ {{lang_chooseIP}}
+ </p>
+ <form method="post" action="?do=ServerSetup">
+ <input type="hidden" name="action" value="ip">
+ <input type="hidden" name="token" value="{{token}}">
+ <table class="slx-table">
+ {{#ips}}
+ <tr>
+ <td>{{ip}}</td>
+ {{#default}}
+ <td>
+ <span class="btn btn-success btn-xs"><span class="glyphicon glyphicon-ok"></span> {{lang_active}}</span>
+ </td>
+ {{/default}}
+ {{^default}}
+ <td>
+ <button class="btn btn-primary btn-xs" name="ip" value="{{ip}}"><span class="glyphicon glyphicon-flag"></span> {{lang_set}}</button>
+ </td>
+ {{/default}}
+ </tr>
+ {{/ips}}
+ </table>
<p>
- {{lang_chooseIP}}
+ {{lang_bootHint}}
</p>
- <form method="post" action="?do=ServerSetup">
- <input type="hidden" name="action" value="ip">
- <input type="hidden" name="token" value="{{token}}">
- <table class="slx-table">
- {{#ips}}
- <tr>
- <td>{{ip}}</td>
- {{#default}}
- <td>
- <span class="btn btn-success btn-xs"><span class="glyphicon glyphicon-ok"></span> {{lang_active}}</span>
- </td>
- {{/default}}
- {{^default}}
- <td>
- <button class="btn btn-primary btn-xs" name="ip" value="{{ip}}"><span class="glyphicon glyphicon-flag"></span> {{lang_set}}</button>
- </td>
- {{/default}}
- </tr>
- {{/ips}}
- </table>
- <p>
- {{lang_bootHint}}
- </p>
- </form>
- </div>
+ </form>
</div>
-</div>
+</div> \ No newline at end of file