forked from halo-battle/game
Version 1.13a
This commit is contained in:
parent
de31cd3e9a
commit
ba8f323879
1634 changed files with 10080 additions and 213021 deletions
37
onyx2/tpl/game/alliance/gestion_membres.tpl
Normal file
37
onyx2/tpl/game/alliance/gestion_membres.tpl
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{include file='game/header.tpl'}
|
||||
{include file='game/alliance/gestion_common.tpl'}
|
||||
<h2>Gestion des membres</h2>
|
||||
<table>
|
||||
<tbody>
|
||||
{foreach from=$membres item=membre}
|
||||
<tr>
|
||||
<td>{$membre.pseudo}</td>
|
||||
<td>{$membre.race}</td>
|
||||
<td>{$membre.last_visite|date_format:"%d/%m/%y %H:%M:%S"}</td>
|
||||
<td><form action="{$menu.gestion}&g=membres&i={$membre.id}" method="post"><p><select name="grade" onchange="this.form.submit();"><option label="Aucun" value="0">Aucun</option>{foreach from=$grades item=grade}<option label="{$grade.nom}" value="{$grade.id}"{if $grade.id == $membre.id_grade_alliance} selected="selected"{/if}>{$grade.nom}</option>{/foreach}</select><noscript> <input type="submit" class="submit" value="GO" /></noscript></p></form></td>
|
||||
<td><a href="{$menu.messages}&n=envoyer&d={$membre.pseudo}" class="msg"><span>Message</span></a></td>
|
||||
<td><a href="{$menu.gestion}&g=membres&u={$membre.id}"><em>Exclure</em></a></td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Pseudo</th>
|
||||
<th>Race</th>
|
||||
<th>Dernière connexion </th>
|
||||
<th>Grade</th>
|
||||
<th>MP</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
<h2>Gestion des postulants</h2>
|
||||
<div id="messagerie">
|
||||
{foreach from=$postulants item=postulant}
|
||||
<dl class="new">
|
||||
<dt><a href="?p=...&i={$postulant.id_user}">{$postulant.pseudo}</a> le {$postulant.timestamp|date_format:"%d/%m/%y %H:%M:%S"}</dt>
|
||||
<dd>{$postulant.message|escape|nl2br}<br /><div style="text-align: right;"><a href="{$menu.gestion}&g=membres&pa={$postulant.id}"><em>Accepter</em></a> | <a href="{$menu.gestion}&g=membres&pr={$postulant.id}"><em>Refuser</em></a></div></dd>
|
||||
</dl>
|
||||
{/foreach}
|
||||
</div>
|
||||
{include file='game/footer.tpl'}
|
||||
Loading…
Add table
Add a link
Reference in a new issue