9 lines
275 B
PHP
9 lines
275 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
<h3>Towns List</h3>
|
||
|
Select a Town from the list below to edit or delete it. You can also <a href="index.php?do=realms&fn=towns&action=new"><img src="icons/world_add.png" alt="Add" align="top" /> add a new Town</a>.<br /><br />
|
||
|
{{townslist}}
|
||
|
END;
|
||
|
|
||
|
?>
|