summaryrefslogtreecommitdiffstats
path: root/modules-available/translation/templates/template-list.html
blob: 881fc5af2f73ed463c6226274ab7201cc308ca5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<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>