{include file="sweet-alert.tpl"}
<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>
{foreachelse}
<tr>
<td colspan=2>暫無人報名</td>
</tr>
{/foreach}
</tbody>
</table>