mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-08-25 04:27:15 +00:00
62d6e19ee9
It's still a work in progress, there are a lot of things that will change in the final release
33 lines
1.4 KiB
Smarty
33 lines
1.4 KiB
Smarty
<!--#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Filename multivillage.tpl ##
|
|
## Developed by: Dzoki ##
|
|
## License: TravianX Project ##
|
|
## Copyright: TravianX (c) 2010-2011. All rights reserved. ##
|
|
## ##
|
|
#################################################################################-->
|
|
|
|
<table id="vlist" cellpadding="1" cellspacing="1">
|
|
<thead>
|
|
<tr>
|
|
<td colspan="3"><a href="dorf3.php" accesskey="9">{$smarty.const.MULTI_V_HEADER}:</a></td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach $villages as $village}
|
|
<tr>
|
|
<td class="dot {if $selectedVillage == $village.villageVref}hl{/if}">●</td>
|
|
<td class="link">
|
|
<a href="?newdid={$village.villageVref}">{$village.villageName}</a>
|
|
</td>
|
|
<td class="aligned_coords">
|
|
<div class="cox">({$village.villageCoordinates['x']}</div>
|
|
<div class="pi">|</div>
|
|
<div class="coy">{$village.villageCoordinates['y']})</div>
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|