blob: e4529ae03b21ee6e4c70f181210b70c3711e7bad (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
$def with (feature_data)
$var title: Feature
<table border="1">
<tr>
<th>Feature</th>
<th>Hosts</th>
</tr>
$for feature in feature_data.keys():
<tr><td>$feature</td><td>$feature_data[feature]['HOSTS']</td></tr>
</table>
|