blob: f3b2e012419a3bd0e4f512cdb910a3bba6225869 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{INCLUDE header.html}
<div class="panel-heading">Channel access list</div>
<div class="panel-body">
<table id="tableInfoNorm" class="table table-hover">
<thead>
<tr>
<th>Number</th>
<th>Channel</th>
<th>Access</th>
</tr>
</thead>
<tbody>
{FOR N,C,A IN NUMBERS,CHANNELS,ACCESSES}
<tr>
<td>{N}</td>
<td>{C}</td>
<td>{A}</td>
</tr>
{END FOR}
</tbody>
</table>
</div>
{INCLUDE footer.html}
|