summaryrefslogtreecommitdiffstats
path: root/templates/translation/template-list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/translation/template-list.html')
-rw-r--r--templates/translation/template-list.html32
1 files changed, 0 insertions, 32 deletions
diff --git a/templates/translation/template-list.html b/templates/translation/template-list.html
deleted file mode 100644
index 881fc5af..00000000
--- a/templates/translation/template-list.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<div class="panel panel-default">
- <div class="panel-heading">
- {{lang_langAdministration}}
- </div>
- <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;
-}
-</script>