Child: [bff074] (diff)

Download this file

list.tpl    23 lines (19 with data), 371 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
%include('header.tpl', title="")
%include('menu.tpl', current='list')
<table>
<tr>
<th>Name</th>
<th>State</th>
<th>UUID</th>
<th>Sender URI</th>
</tr>
%for receiver in receivers:
<tr>
<td>{{receiver[0]}}</td>
<td>{{receiver[1]}}</td>
<td>{{receiver[2]}}</td>
<td>{{receiver[3]}}</td>
</tr>
%end
</table>
%include('footer.tpl')