summaryrefslogtreecommitdiffstats
path: root/templates/administration/_page.html
blob: b6d11cd6920902e623b5407fcac4304e4fe2a8ca (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
33
34
<div class="container">
	<div class="panel panel-default">
		<div class="panel-heading">
			Language Administration
		</div>
		<div class="panel-body">
			<table class="table table-hover">
				<thead>
					<tr>
						<th>Template</th>
						<th style='text-align:center;'>{{lang_german}}</th>
						<th style='text-align:center;'>{{lang_english}}</th>
						<th style='text-align:center;'>Português</th>
					<tr>
				</thead>
				<tbody>
					{{#table}}
						<tr onclick="goTo('{{link}}');">
							<td>{{template}}</td>
							<td style='width:200px;text-align:center;'>{{de}}</td>
							<td style='width:200px;text-align:center;'>{{en}}</td>
							<td style='width:200px;text-align:center;'>{{pt}}</td>
						</tr>
					{{/table}}
				</tbody>
			</table>
		</div>
	</div>
</div>
<script>
function goTo(link){
	window.location.href = "?do=Admin&template=" + link;
}
</script>