summaryrefslogtreecommitdiffstats
path: root/modules-available/translation/templates/module-list.html
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/translation/templates/module-list.html')
-rw-r--r--modules-available/translation/templates/module-list.html14
1 files changed, 4 insertions, 10 deletions
diff --git a/modules-available/translation/templates/module-list.html b/modules-available/translation/templates/module-list.html
index 037a21bc..589fa0d4 100644
--- a/modules-available/translation/templates/module-list.html
+++ b/modules-available/translation/templates/module-list.html
@@ -7,26 +7,20 @@
</div>
</div>
<div class="panel panel-default">
- <table class="table table-hover">
+ <table class="table">
<thead>
<tr>
- <th width="350">{{lang_module}}</th>
+ <th>{{lang_module}}</th>
<th>{{lang_status}}</th>
<tr>
</thead>
<tbody>
{{#table}}
- <tr onclick="goTo('{{module}}');">
- <td>{{module}}</td>
+ <tr>
+ <td><a href="?do=Translation&amp;module={{module}}">{{module}}</a></td>
<td>{{{status}}}</td>
</tr>
{{/table}}
</tbody>
</table>
</div>
-
-<script>
-function goTo(link){
- window.location.href = "?do=Translation&page=module&module=" + link;
-}
-</script>