blob: ac39835f54d8653fcf4680ae04e222736603b07f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$def with (cat, pkg, pdata)
$var title: $cat/$pkg
No. of hosts: $pdata['HOST_COUNT']</br>
No. of category-package-versions: $pdata['CPV_COUNT']</br>
Top CPVs:</br>
<table border="1">
<tr>
<th>Category</th>
<th>Package</th>
<th>Version</th>
<th>Hosts</th>
</tr>
$for p in pdata['TOP_CPV']:
<tr><td>$p['CAT']</td><td>$p['PKG']</td><td>$p['VER']</td><td>$p['HOST_COUNT']</td></tr>
</table>
|