summaryrefslogtreecommitdiffstats
path: root/templates/administration/template.html
diff options
context:
space:
mode:
authorraul2014-07-15 21:06:07 +0200
committerraul2014-07-15 21:06:07 +0200
commitbd9cdadb71b9cb46e7c8c629739997d2a0c1388e (patch)
tree2c8084c0132b581f6e2eb850248eddee69a77b7a /templates/administration/template.html
parent[i18n] Updated the translations (diff)
downloadslx-admin-bd9cdadb71b9cb46e7c8c629739997d2a0c1388e.tar.gz
slx-admin-bd9cdadb71b9cb46e7c8c629739997d2a0c1388e.tar.xz
slx-admin-bd9cdadb71b9cb46e7c8c629739997d2a0c1388e.zip
[i18n] Added administration interface for the i18n system
Diffstat (limited to 'templates/administration/template.html')
-rw-r--r--templates/administration/template.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/templates/administration/template.html b/templates/administration/template.html
new file mode 100644
index 00000000..02317472
--- /dev/null
+++ b/templates/administration/template.html
@@ -0,0 +1,37 @@
+<div class="container">
+ <div class="panel panel-default">
+ <div class="panel-heading">
+ {{template}}
+ </div>
+ <div class="panel-body">
+ <table class="table table-hover">
+ <thead>
+ <tr>
+ <th>Mustache Tag</th>
+ <th style='text-align:center;'>German JSON</th>
+ <th style='text-align:center;'>English JSON</th>
+ <th style='text-align:center;'>Portuguese JSON</th>
+ </tr>
+ </thead>
+ <tbody>
+ {{#tags}}
+ <tr>
+ <td>{{tag}}</td>
+ <td style='width:250px;text-align:center;'>
+ <input type="text" class="form-control" placeholder="German TAG" value="{{de}}">
+ </td>
+ <td style='width:250px;text-align:center;'>
+ <input type="text" class="form-control" placeholder="English TAG" value="{{en}}">
+ </td>
+ <td style='width:250px;text-align:center;'>
+ <input type="text" class="form-control" placeholder="Portuguese TAG" value="{{pt}}">
+ </td>
+ </tr>
+ {{/tags}}
+ </tbody>
+ </table>
+ <a class="btn btn-primary" href='?do=Admin' >Back</a>
+ <a class="btn btn-primary" href='#' >Update</a>
+ </div>
+ </div>
+</div>