aboutsummaryrefslogtreecommitdiff
blob: 702b03b79f4b691d0a2038b9e693caa1333089cc (plain)
1
2
3
4
5
6
7
8
9
10
11
$def with (profile_data)
$var title: Profile

<table border="1">
  <tr>
	<th>Profile/th>
	<th>Hosts</th>
  </tr>
  $for profile in profile_data.keys():
    <tr><td>$profile</td><td>$profile_data[profile]['HOSTS']</td></tr>
</table>