Files
TravianZ/templates/sendUnits/search.tpl
T
iopietro 0065cb3970 Additions
+Added the possibility to send units to another villages (spy,
reinforcement, normal attack and raid)
+Added the possibility to set the spying type and the catapult targets
+Some changes in the DB
2018-09-20 12:52:47 +02:00

40 lines
1.3 KiB
Smarty

<table id="coords" cellpadding="1" cellspacing="1">
<tbody>
<tr>
<td class="sel">
<label>
<input class="radio" name="c" value="2" type="radio" {if !isset($c) || $c == 2}checked="checked"{/if}> {$smarty.const.REINFORCEMENT}
</label>
</td>
<td class="vil">
<span>{$smarty.const.VILLAGE}:</span>
<input class="text" name="targetVillageName" value="{$targetVillageName}" maxlength="20" type="text"></td>
</tr>
<tr>
<td class="sel">
<label>
<input class="radio" name="c" value="3" type="radio" {if isset($c) && $c == 3}checked="checked"{/if}> {$smarty.const.NORMALATTACK}
</label>
</td>
<td class="or">{$smarty.const.OR}</td>
</tr>
<tr>
<td class="sel">
<label>
<input class="radio" name="c" value="4" type="radio" {if isset($c) && $c == 4}checked="checked"{/if}> {$smarty.const.RAID}
</label>
</td>
<td class="target">
<span>{$smarty.const.X}:</span>
<input class="text" name="x" value="{$x}" maxlength="4" type="text">
<span>{$smarty.const.Y}:</span>
<input class="text" name="y" value="{$y}" maxlength="4" type="text">
</td>
</tr>
</tbody>
</table>
<br />
<button value="prepareUnitsToSend" name="action" id="btn_ok" class="trav_buttons"> {$smarty.const.OK} </button>