This repository has been archived on 2025-06-10. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
server/onyx/tpl/bootstrap/public/team.tpl
2013-11-25 11:55:35 +01:00

17 lines
430 B
Smarty

{extends file="public/layout.tpl"}
{block name=main}
<h1>
{$team->slogan}
</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>
{/foreach}
</ul>
</li>
</ul>
{/block}