Lobby at challenge end

This commit is contained in:
Némunaire 2015-01-18 11:50:55 +01:00 committed by Nemunaire
commit 2a9cac24f7
5 changed files with 75 additions and 21 deletions

View file

@ -0,0 +1,20 @@
<table class="table table-striped table-hover">
<thead>
<tr>
<th>#</th>
<th>Team</th>
<th>Slogan</th>
<th>Points</th>
</tr>
</thead>
<tbody>
{foreach from=$rank item=t key=k}
<tr{if $t->id == $my_team->id} class="active" style="font-weight: bold"{/if}>
<th>{$t->get_rank()}</th>
<td>{$t->get_name()}</td>
<td>{$t->slogan}</td>
<td>{$t->get_pts()}</td>
</tr>
{/foreach}
</tbody>
</table>