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