summaryrefslogtreecommitdiffstats
path: root/templates/administration/template.html
diff options
context:
space:
mode:
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>