HB/templates/game/alliance_adm_emprunt.tpl

54 lines
1.5 KiB
Smarty
Raw Normal View History

2008-09-20 10:00:00 +00:00
{include file='game/header.tpl'}
<h2>Administration de l'alliance</h2>
{include file='game/alliance_adm_header.tpl'}
<br />
<h2>R&eacute;capitulatif</h2>
<table>
<tbody>
<tr>
<th>{$nomsressources.0}</th>
<td>{$alliance.metalS}</td>
</tr>
<tr>
<th>{$nomsressources.1}</th>
<td>{$alliance.cristalS}</td>
</tr>
<tr>
<th>{$nomsressources.2}</th>
<td>{$alliance.hydrogeneS}</td>
</tr>
</tbody>
</table>
<h2>Demande de financements</h2>
<table style="text-align: center; width: 100%;">
<thead>
<tr>
<th>Pseudo</th>
<th>Motif</th>
<th>Metal</th>
<th>Cristal</th>
<th>Hydrog&egrave;ne</th>
<th>R&eacute;ponse</th>
</tr>
</thead>
<tbody>
{if !$demandes}
<tr>
<td colspan="6">Aucune demande de financement en cours</td>
</tr>
{/if}
{foreach from=$demandes item=demande}
<tr>
<td>{$demande.pseudo}<a href="?p=envoyer&amp;d={$demande.pseudo}" class="msg"><span>Message</span></a></td>
<td>{$demande.raison|escape|nl2br}</td>
<td>{$demande.metal}</td>
<td>{$demande.cristal}</td>
<td>{$demande.hydrogene}</td>
<td><a href="{$menu.alliance}&amp;q=adm_emprunt&amp;a={$demande.id}"><em>Accepter</em></a><br /><a href="{$menu.alliance}&amp;q=adm_emprunt&amp;u={$demande.id}"><em>Refuser</em></a></td>
</tr>
{/foreach}
</tbody>
</table>
<h2>Financer les joueurs</h2>
<h2>Bourse</h2>
{include file='game/footer.tpl'}