Files
TravianZ/templates/goldClub/unitsList.tpl
T
iopietro 62d6e19ee9 The first release of the refactored version
It's still a work in progress, there are a lot of things that will
change in the final release
2018-09-16 17:22:39 +02:00

18 lines
480 B
Smarty

<table class="transparent" id="raidList" cellspacing="1" cellpadding="1">
<tr>
{foreach $units as $type => $unit}
<td>
<label for="u{$type}">
<img class="unit u{($tribe - 1) * 10 + $type}" title="{$unit.name}" src="assets/img/x.gif"></label>
</td>
{/foreach}
</tr>
<tr>
{foreach $units as $type => $unit}
<td>
<input class="text" id="u{$type}" type="text" name="units[{$type}]" value="{$unit.amount}" maxLength="6">
</td>
{/foreach}
</tr>
</table>