summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/templates/pcsubtable.html
blob: 0359813b6a238f65aa31da81fdf859a94fb7c09d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div>
<br>
<table style="margin-bottom:0px">
	<tr>
		<th width=120>{{lang_pcID}}</th>
		<th width=50>{{lang_pcX}}</th>
    <th width=50>{{lang_pcY}}</th>
		<th width=20>{{lang_pcInUse}}</th>
	</tr>

{{#list}}
	<tr class="tablerow">
    <td>{{id}}</td>
		<td>{{x}}</td>
		<td>{{y}}</td>
		<td align="center">{{inUse}}</td>
	</tr>
{{/list}}

</table>
<br>
</div>