summaryrefslogtreecommitdiffstats
path: root/templates/translation/_page.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/translation/_page.html')
-rw-r--r--templates/translation/_page.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/templates/translation/_page.html b/templates/translation/_page.html
new file mode 100644
index 00000000..8e5e4bab
--- /dev/null
+++ b/templates/translation/_page.html
@@ -0,0 +1,40 @@
+<div class="container">
+ <div class="panel panel-default">
+ <div class="panel-heading">
+ {{lang_langAdministration}}
+ </div>
+ <div class="panel-body">
+ <p>{{lang_adminInfo}}</p>
+ </div>
+ <ul class="list-group">
+ <a href="?do=Translation&page=messages" class="list-group-item active">{{lang_editMessages}}</a>
+ </ul>
+ </div>
+ <div class="panel panel-default">
+ <table class="table table-hover">
+ <thead>
+ <tr>
+ <th>Template</th>
+ <th style='text-align:center;'>{{lang_german}}</th>
+ <th style='text-align:center;'>{{lang_english}}</th>
+ <th style='text-align:center;'>{{lang_portuguese}}</th>
+ <tr>
+ </thead>
+ <tbody>
+ {{#table}}
+ <tr onclick="goTo('{{link}}');">
+ <td>{{template}}</td>
+ <td style='width:230px;text-align:center;'>{{{de}}}</td>
+ <td style='width:230px;text-align:center;'>{{{en}}}</td>
+ <td style='width:230px;text-align:center;'>{{{pt}}}</td>
+ </tr>
+ {{/table}}
+ </tbody>
+ </table>
+ </div>
+</div>
+<script>
+function goTo(link){
+ window.location.href = "?do=Translation&page=templates&template=" + link;
+}
+</script>