aboutsummaryrefslogtreecommitdiff
blob: 209f8f856083da739d61e6d94b1d16dc8608eae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
$def with (use_data)
$var title: Use

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