<h2>所有報名者</h2>
<table class="table table-bordered table-hover table-striped">
<thead>
<tr class="info">
<th>報名者</th>
<th>Email</th>
</tr>
</thead>
<tbody>
{foreach $signups as $signup}
<tr>
<td>{$signup.name}</td>
<td>{$signup.email}</td>
</tr>
{/foreach}
</tbody>
</table>