summaryrefslogblamecommitdiffstats
path: root/templates/administration/_page.html
blob: ac24ed71a663f7ec83a352046375f73af2d23f39 (plain) (tree)
1
2
3
4
5
6
7
8


                                           
                                                   

                                        
                                                 
                      
























                                                                                                                  



                    
                                                                           

         
<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>