niche/templates/internal_gc.html
2013-10-03 22:08:58 +02:00

9 lines
173 B
HTML

$def with (title, diffs)
<h1>$title</h1>
<table border=1>
<tr><th>Type</th><th>Count</th></tr>
$for type, count in diffs:
<tr><td>$type</td><td>$count</td></tr>
</table>