HB/templates/game/bourse_ressources.tpl

40 lines
1.3 KiB
Smarty

{include file='game/header.tpl'}
<h2>Bourse des ressources</h2>
<h3>Les prix sont donnés en milliers de crédits</h3>
{foreach from=$bourse item=action}
<div style="float: left;">
<table>
<tr>
<td colspan="3"><a href="{$menu.marche}&amp;d={$action.id}"><img src="bourser.php?a={$action.id}&amp;r={$planete->race}" alt="{$nomsressources[$action.id]}" /></a></td>
</tr>
<tr>
<th>{$nomsressources[$action.id]}</th>
<td>{$action.dispo|separerNombres}</td>
<th>Prix</th>
</tr>
<tr>
<td colspan="2">
<form action="{$menu.marche}&amp;a={$action.id}" method="post">
<fieldset>
Acheter : <input type="text" class="text" name="a{$action.id}" maxlength="8" value="0" />
<input type="submit" class="submit" value="OK" />
</fieldset>
</form>
</td>
<td>{$action.prixA|separerNombres}</td>
</tr>
<tr>
<td colspan="2">
<form action="{$menu.marche}&amp;v={$action.id}" method="post">
<fieldset>
Vendre : <input type="text" class="text" name="a{$action.id}" maxlength="8" value="0" />
<input type="submit" class="submit" value="OK" />
</fieldset>
</form>
</td>
<td>{$action.prixV|separerNombres}</td>
</tr>
</table>
</div>
{/foreach}
{include file='game/footer.tpl'}