summaryrefslogtreecommitdiffstats
path: root/templates/administration/template.html
blob: 0231747216e7bb0ee6024e12e1c421781b820a12 (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
<div class="container">
	<div class="panel panel-default">
		<div class="panel-heading">
			{{template}}
		</div>
		<div class="panel-body">
			<table class="table table-hover">
				<thead>
					<tr>
						<th>Mustache Tag</th>
						<th style='text-align:center;'>German JSON</th>
						<th style='text-align:center;'>English JSON</th>
						<th style='text-align:center;'>Portuguese JSON</th>
					</tr>
				</thead>
				<tbody>
					{{#tags}}
						<tr>
							<td>{{tag}}</td>
							<td style='width:250px;text-align:center;'>
								<input type="text" class="form-control" placeholder="German TAG" value="{{de}}">
							</td>
							<td style='width:250px;text-align:center;'>
								<input type="text" class="form-control" placeholder="English TAG" value="{{en}}">
							</td>
							<td style='width:250px;text-align:center;'>
								<input type="text" class="form-control" placeholder="Portuguese TAG" value="{{pt}}">
							</td>
						</tr>
					{{/tags}}
				</tbody>
			</table>
			<a class="btn btn-primary" href='?do=Admin' >Back</a> 
			<a class="btn btn-primary" href='#' >Update</a>
		</div>
	</div>
</div>