summaryrefslogtreecommitdiffstats
path: root/modules-available/rebootcontrol/templates/task-list.html
blob: 063ba94921ceb16287660b13719a91314ec7e696 (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_mode}}</th>
			<th>{{lang_location}}</th>
			<th>{{lang_time}}</th>
			<th>{{lang_clientCount}}</th>
			<th>{{lang_status}}</th>
		</tr>
	</thead>
	<tbody>
	{{#list}}
		<tr>
			<td>
				<a href="?do=rebootcontrol&amp;taskid={{taskId}}">{{mode}}</a>
			</td>
			<td>
				{{locationName}}
			</td>
			<td>
				{{time}}
			</td>
			<td>
				{{clientCount}}
			</td>
			<td>
				{{status}}
			</td>
		</tr>
	{{/list}}
	</tbody>
</table>