summaryrefslogtreecommitdiffstats
path: root/modules-available/translation/templates/template-list.html
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/translation/templates/template-list.html')
-rw-r--r--modules-available/translation/templates/template-list.html46
1 files changed, 20 insertions, 26 deletions
diff --git a/modules-available/translation/templates/template-list.html b/modules-available/translation/templates/template-list.html
index 881fc5af..59d0f7cf 100644
--- a/modules-available/translation/templates/template-list.html
+++ b/modules-available/translation/templates/template-list.html
@@ -1,32 +1,26 @@
+<h1>{{moduleName}} ({{module}})</h1>
<div class="panel panel-default">
<div class="panel-heading">
- {{lang_langAdministration}}
+ {{lang_templates}}
</div>
<div class="panel-body">
- <p>{{lang_adminInfo}}</p>
+ <div class="row">
+ <div class="col-sm-6">
+ {{#langs}}
+ <a href="?do=Translation&amp;module={{module}}&amp;section=template&amp;destlang={{cc}}">{{name}} &raquo;</a>
+ <ul>
+ <li>{{lang_missing}}: {{missing}}</li>
+ <li>{{lang_unused}}: {{unused}}</li>
+ </ul>
+ {{/langs}}
+ </div>
+ <div class="col-sm-6">
+ {{lang_tags}}: {{tagcount}}
+ <ul>
+ {{#templates}}
+ <li>{{template}}</li>
+ {{/templates}}
+ </ul>
+ </div>
</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;
-}
-</script>