summaryrefslogtreecommitdiffstats
path: root/templates/serversetup/ipaddress.html
diff options
context:
space:
mode:
authorraul2014-06-30 16:49:23 +0200
committerMichael Pereira Neves2014-07-11 15:05:00 +0200
commit99516d4baa747ec06afeda47fb7630d0eaf485b0 (patch)
tree733a4da918e6446beced4249b3909f69d6b83861 /templates/serversetup/ipaddress.html
parent[i18n]creation of the lang folder (diff)
downloadslx-admin-99516d4baa747ec06afeda47fb7630d0eaf485b0.tar.gz
slx-admin-99516d4baa747ec06afeda47fb7630d0eaf485b0.tar.xz
slx-admin-99516d4baa747ec06afeda47fb7630d0eaf485b0.zip
[i18n]added mustache tags to the templates
Diffstat (limited to 'templates/serversetup/ipaddress.html')
-rw-r--r--templates/serversetup/ipaddress.html14
1 files changed, 8 insertions, 6 deletions
diff --git a/templates/serversetup/ipaddress.html b/templates/serversetup/ipaddress.html
index 013c6785..acfbb408 100644
--- a/templates/serversetup/ipaddress.html
+++ b/templates/serversetup/ipaddress.html
@@ -1,12 +1,11 @@
<div class="container">
<div class="panel panel-default">
<div class="panel-heading">
- Boot-Adresse des Servers
+ {{lang_bootAddress}}
</div>
<div class="panel-body">
<p>
- Bitte wählen Sie die primäre IP-Adresse des Servers aus. Dies ist für einige Dienste und Funktionen notwendig,
- z.B. wenn Sie Authentifizierung über Active Directory nutzen wollen.
+ {{lang_chooseIP}}
</p>
<form method="post" action="?do=ServerSetup">
<input type="hidden" name="action" value="ip">
@@ -17,18 +16,21 @@
<td>{{ip}}</td>
{{#default}}
<td>
- <span class="btn btn-success btn-xs"><span class="glyphicon glyphicon-ok"></span> Aktiv</span>
+ <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> Setzen</button>
+ <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>
</div>
-</div> \ No newline at end of file
+</div>