aboutsummaryrefslogtreecommitdiff
blob: 03c4bbd08d1c0abef449aa837b7c02efa31bc318 (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>