server/onyx/tpl/bootstrap/teams/me.tpl
2013-11-28 16:28:43 +01:00

34 lines
810 B
Smarty

{extends file="teams/layout.tpl"}
{block name=content}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Information sur l'équipe</h3>
</div>
<div class="panle-body">
{if not empty($members)}
<table class="table">
<thead><tr>
<th>#</th>
<th>Prénom</th>
<th>Nom</th>
<th>Pseudonyme</th>
<th>Entreprise</th>
</tr></thead>
<tbody>
{foreach from=$members item=member}
</tr>
<td>{$member->firstname}</td>
<td>{$member->lastname}</td>
<td>{$member->nickname}</td>
<td>{$member->company}</td>
</tr>
{/foreach}
</tbody>
</table>
{/if}
</div>
</div>
{/block}