summaryrefslogtreecommitdiffstats
path: root/templates/administration/_page.html
blob: ac24ed71a663f7ec83a352046375f73af2d23f39 (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
35
36
37
38
39
40
<div class="container">
	<div class="panel panel-default">
		<div class="panel-heading">
			{{lang_langAdministration}}
		</div>
		<div class="panel-body">
			<p>{{lang_adminInfo}}</p>
		</div>
		<ul class="list-group">
			<a href="?do=Admin&page=messages" class="list-group-item active">{{lang_editMessages}}</a>
		</ul>
	</div>
	<div class="panel panel-default">
		<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;'>{{lang_portuguese}}</th>
				<tr>
			</thead>
			<tbody>
				{{#table}}
					<tr onclick="goTo('{{link}}');">
						<td>{{template}}</td>
						<td style='width:230px;text-align:center;'>{{de}}</td>
						<td style='width:230px;text-align:center;'>{{en}}</td>
						<td style='width:230px;text-align:center;'>{{pt}}</td>
					</tr>
				{{/table}}
			</tbody>
		</table>
	</div>
</div>
<script>
function goTo(link){
	window.location.href = "?do=Admin&page=templates&template=" + link;
}
</script>