summaryrefslogblamecommitdiffstats
path: root/modules-available/rebootcontrol/templates/task-list.html
blob: dcb04450c2a85b898169b9b6d535c5bebe1b666b (plain) (tree)
1
2
3
4
5
6
7



                             
                                              
                                              
                                                  






                                                     
                                                


                                                

                                                                                                                      

                             



                                                               
                             

                                                
                             
                                                





                                          
<h3>{{lang_activeTasks}}</h3>
<table class="table">
	<thead>
		<tr>
			<th>{{lang_when}}</th>
			<th>{{lang_task}}</th>
			<th>{{lang_location}}</th>
			<th>{{lang_clientCount}}</th>
			<th>{{lang_status}}</th>
		</tr>
	</thead>
	<tbody>
	{{#list}}
		<tr>
			<td class="text-nowrap">
				{{timestamp_s}}
			</td>
			<td class="text-nowrap">
				<a href="?do=rebootcontrol&amp;show=task&amp;what=task&amp;taskid={{id}}">{{type}}</a>
				<div class="small">{{action}}</div>
			</td>
			<td>
				{{#locations}}
				<div class="loc">{{name}}</div>
				{{/locations}}
				<div class="clearfix"></div>
			</td>
			<td class="text-nowrap">
				{{clients}}
			</td>
			<td class="text-nowrap">
				{{status}}
			</td>
		</tr>
	{{/list}}
	</tbody>
</table>