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


                                           
                                                   

                                        
                                                 
                      
                                       
                                                                                                                        















                                                                                               


                                                                                                        



                                             



                    
                                                                                 

         
<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=Translation&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=Translation&page=templates&template=" + link;
}
</script>