diff options
author | Simon Rettberg | 2014-10-27 16:15:02 +0100 |
---|---|---|
committer | Simon Rettberg | 2014-10-27 16:15:02 +0100 |
commit | 2f23a77244d02468a4d59c1581c5a7b4fb526a3a (patch) | |
tree | e3e723a5dc15451d71cc7a0102ba5d411204cd7a /templates/translation/template-list.html | |
parent | Add SLX_BENCHMARK_VM to settings (diff) | |
download | slx-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.html | 49 |
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; |