The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

<h2>children </h2>
<table id="child_list">
 <caption>child list</caption>
 <thead><tr><th>birthday</th><th>name</th></tr></thead>
 <tbody>
[% FOREACH child = model.children %]
<tr>
 <td>[% child.birthday %]</td><td>[% child.name %]</td>
 <td>[<a href="[% SCRIPT_NAME %]/child/[% child.id_child %]">details</a>]</td>
</tr>
[% END %]
 </tbody>
</table>