summaryrefslogtreecommitdiffstats
path: root/templates/translation/template-list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/translation/template-list.html')
-rw-r--r--templates/translation/template-list.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/templates/translation/template-list.html b/templates/translation/template-list.html
new file mode 100644
index 00000000..1449cef0
--- /dev/null
+++ b/templates/translation/template-list.html
@@ -0,0 +1,33 @@
+<div class="container">
+ <div class="panel panel-default">
+ <div class="panel-heading">
+ {{lang_langAdministration}}
+ </div>
+ <div class="panel-body">
+ <p>{{lang_adminInfo}}</p>
+ </div>
+ </div>
+ <div class="panel panel-default">
+ <table class="table table-hover">
+ <thead>
+ <tr>
+ <th>Template</th>
+ <th>{{lang_status}}</th>
+ <tr>
+ </thead>
+ <tbody>
+ {{#table}}
+ <tr onclick="goTo('{{link}}');">
+ <td>{{template}}</td>
+ <td>{{{status}}}</td>
+ </tr>
+ {{/table}}
+ </tbody>
+ </table>
+ </div>
+</div>
+<script>
+function goTo(link){
+ window.location.href = "?do=Translation&page=template&template=" + link;
+}
+</script>