summaryrefslogtreecommitdiffstats
path: root/templates/translation
diff options
context:
space:
mode:
Diffstat (limited to 'templates/translation')
-rw-r--r--templates/translation/_page.html26
-rw-r--r--templates/translation/template-list.html49
2 files changed, 36 insertions, 39 deletions
diff --git a/templates/translation/_page.html b/templates/translation/_page.html
index dee651a7..ed4e8c35 100644
--- a/templates/translation/_page.html
+++ b/templates/translation/_page.html
@@ -1,16 +1,14 @@
-<div class="container">
- <div class="panel panel-default">
- <div class="panel-heading">
- {{lang_langAdministration}}
- </div>
- <div class="panel-body">
- <p>{{lang_adminInfo}}</p>
- <ul class="nav nav-pills nav-stacked">
- <li><a href="?do=Translation&amp;page=templates">{{lang_editTemplates}}</a></li>
- <li><a href="?do=Translation&amp;page=messages">{{lang_editMessages}}</a></li>
- <li><a href="?do=Translation&amp;page=hardcoded">{{lang_editHardcoded}}</a></li>
- <li><a href="?do=Translation&amp;page=settings">{{lang_editSettings}}</a></li>
- </ul>
- </div>
+<div class="panel panel-default">
+ <div class="panel-heading">
+ {{lang_langAdministration}}
+ </div>
+ <div class="panel-body">
+ <p>{{lang_adminInfo}}</p>
+ <ul class="nav nav-pills nav-stacked">
+ <li><a href="?do=Translation&amp;page=templates">{{lang_editTemplates}}</a></li>
+ <li><a href="?do=Translation&amp;page=messages">{{lang_editMessages}}</a></li>
+ <li><a href="?do=Translation&amp;page=hardcoded">{{lang_editHardcoded}}</a></li>
+ <li><a href="?do=Translation&amp;page=settings">{{lang_editSettings}}</a></li>
+ </ul>
</div>
</div>
diff --git a/templates/translation/template-list.html b/templates/translation/template-list.html
index 1449cef0..881fc5af 100644
--- a/templates/translation/template-list.html
+++ b/templates/translation/template-list.html
@@ -1,31 +1,30 @@
-<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 class="panel panel-default">
+ <div class="panel-heading">
+ {{lang_langAdministration}}
</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 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>
+
<script>
function goTo(link){
window.location.href = "?do=Translation&page=template&template=" + link;