35 lines
1.2 KiB
PHP
35 lines
1.2 KiB
PHP
<?php
|
|
|
|
// No direct access.
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
?>
|
|
|
|
<table class='table table-stiped, table-hover'>
|
|
<thead>
|
|
<tr>
|
|
<th width='30%'>Bezeichnung</th>
|
|
<th width='20%'>Stadt</th>
|
|
<th width='20%'>Homepage</th>
|
|
<th width='20%'>E-Mail</th>
|
|
<th width='10%'></th>
|
|
<th width='3%'>id</th>
|
|
</tr>
|
|
</thead>
|
|
<?php foreach($this->objects as $club): ?>
|
|
<?php $url = htmlentities($club->getHomepage()); ?>
|
|
<?php $mail = htmlentities($club->getMail()); ?>
|
|
<tr>
|
|
<td><a href='<?php echo str_replace('__ID__', $club->getId(), $this->changeUrl); ?>'><?php echo htmlentities($club->getName()); ?></a></td>
|
|
<td><?php echo htmlentities($club->getCity()); ?></td>
|
|
<td><a href='<?php echo $url; ?>' target='_blank'><?php echo $url; ?></a></td>
|
|
<td><a href='mailto:<?php echo $mail; ?>'><?php echo $mail; ?></a></td>
|
|
<td><a href='<?php echo str_replace('__ID__', $club->getId(), $this->delUrl); ?>'><span class='icon-delete'></span>Löschen</a></td>
|
|
<td><?php echo htmlentities($club->getId()); ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|
|
|
|
<div><a href='<?php echo $this->addUrl; ?>'><span class='icon-new'></span>Neuen Verein anlegen</a></div>
|