summaryrefslogblamecommitdiffstats
path: root/templates/translation/edit.html
blob: 5fd2ef19fb5462cfc275ffa4a13fdb24d62fde9f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                                           
                                

                                        




                                                                     




                                                                                                                               

                                                                 
                                                    
                                                                             



                                                                         
                                                     


                                                         
                                                                                           
                                                                                
                                                                          
                                                                    
                                                                                                                                                                                                   
                                                                     
                                                                          

                                                                                                                                                                                                                                      
                                                                     

                                                             

                                                                

                                                
                                                                                                    
                                                                                                                             
                                                                                                                               
                               


                      





                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
<div class="container">
	<div class="panel panel-default">
		<div class="panel-heading">
			{{path}}
		</div>
		<div class="panel-body">
			<p>{{lang_templateAdminHelp}}</p>
			<div class="alert alert-info">
				{{lang_templateHint}}
			</div>
			<form action="?do=Translation" method="post">
				<input type="hidden" name="path" value="{{path}}">
				<input type="hidden" name="token" value="{{token}}">
				<a class="btn btn-primary" href='?do=Translation' >{{lang_back}}</a>
				<button class="btn btn-primary" type="button" onclick="addTag()" >{{lang_createTag}}</button>
				<button type="submit" class="btn btn-primary" name="update" value="true">{{lang_save}}</button>
				<table class="table table-hover">
					<thead>
						<tr>
							<th>Mustache Tag</th>
							{{#langs}}
							<th>{{lang}}</th>
							{{/langs}}
							<th></th>
						</tr>
					</thead>
					<tbody>
						{{#tags}}
							<tr class="{{class}}" id="{{tag}}">
								<td>{{tag}}</td>
								{{#langs}}
								<td>
									<input type="text" class="form-control" placeholder="{{placeholder}}" value="{{translation}}" name="lang#{{lang}}#{{tag}}">
								</td>
								{{/langs}}
								<td>
									<button type="submit" class="btn btn-danger btn-xs" name="delete" value="{{tag}}"><span class="glyphicon glyphicon-remove"></span> {{lang_deleteTAG}}</button>
								</td>
							</tr>
						{{/tags}}
						<tr id="newTag">
						</tr>
					</tbody>
				</table>
				<a class="btn btn-primary" href='?do=Translation' >{{lang_back}}</a>
				<button class="btn btn-primary" type="button" onclick="addTag()" >{{lang_createTag}}</button>
				<button type="submit" class="btn btn-primary" name="update" value="true">{{lang_save}}</button>
			</form>
		</div>
	</div>
</div>
<script>
function addTag(){
	var target = document.getElementById('newTag');
	target.innerHTML = "<td> <input type='text' class='form-control' placeholder='{{lang_newTAG}}' name='newtag'> </td> <td style='width:250px;text-align:center;'> <input type='text' class='form-control' placeholder='{{lang_germanTAG}}' name='lang#de#newtag'> </td> <td style='width:250px;text-align:center;'> <input type='text' class='form-control' placeholder='{{lang_englishTAG}}' name='lang#en#newtag'> </td>	<td style='width:250px;text-align:center;'> <input type='text' class='form-control' placeholder='{{lang_portugueseTAG}}' name='lang#pt#newtag'> </td><td></td>";
}
</script>