Affiche les 1000 première planètes dans la page d'admin, c'est donc plus simple de les trouver
This commit is contained in:
parent
28b0ceeee8
commit
6d8bf942db
2 changed files with 23 additions and 1 deletions
|
|
@ -37,4 +37,22 @@
|
|||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
{include file='game/footer.tpl'}
|
||||
<br />
|
||||
<h2>Liste des planètes existantes</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Planète</th>
|
||||
<th>Joueur</th>
|
||||
<th>Position</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
{foreach from=$planetes item=planete}
|
||||
<tr>
|
||||
<td>{$planete.nom_planete}</td>
|
||||
<td>{$planete.pseudo}</td>
|
||||
<td>{$planete.galaxie}:{$planete.ss}:{$planete.position}</td>
|
||||
<td><a href="admin.php?p={$linkpage}&id={$planete.id}"><input type="submit" class="submit" value="GO" /></a></td>
|
||||
<tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
{include file='game/footer.tpl'}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue