server/onyx/tpl/bootstrap/public/team.tpl

18 lines
430 B
Smarty
Raw Normal View History

2013-11-25 10:55:15 +00:00
{extends file="public/layout.tpl"}
{block name=main}
2013-10-26 15:42:18 +00:00
<h1>
{$team->slogan}
2013-10-26 15:42:18 +00:00
</h1>
<ul>
<li><strong>Score :</strong> {$team->get_pts()}</li>
<li><strong>Membre{if count($team->get_members()) > 1}s{/if} :</strong>
<ul>
{foreach from=$team->get_members() item=m}
<li><span class="font-variant: small-caps;">{$m->lastname}</span> {$m->firstname}</li>
2013-10-26 15:42:18 +00:00
{/foreach}
</ul>
</li>
</ul>
{/block}