summaryrefslogtreecommitdiffstats
path: root/modules-available/rebootcontrol/templates/task-list.html
blob: 5ab756750f25041550f564d31c41292f5cd32124 (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
<h3>{{lang_activeTasks}}</h3>
<table class="table">
	<thead>
		<tr>
			<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">
				<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>