summaryrefslogtreecommitdiffstats
path: root/templates/translation/template-list.html
diff options
context:
space:
mode:
authorSimon Rettberg2014-10-27 16:15:02 +0100
committerSimon Rettberg2014-10-27 16:15:02 +0100
commit2f23a77244d02468a4d59c1581c5a7b4fb526a3a (patch)
treee3e723a5dc15451d71cc7a0102ba5d411204cd7a /templates/translation/template-list.html
parentAdd SLX_BENCHMARK_VM to settings (diff)
downloadslx-admin-2f23a77244d02468a4d59c1581c5a7b4fb526a3a.tar.gz
slx-admin-2f23a77244d02468a4d59c1581c5a7b4fb526a3a.tar.xz
slx-admin-2f23a77244d02468a4d59c1581c5a7b4fb526a3a.zip
No reason to put a container into a container everywhere
Diffstat (limited to 'templates/translation/template-list.html')
-rw-r--r--templates/translation/template-list.html49
1 files changed, 24 insertions, 25 deletions
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;