summaryrefslogblamecommitdiffstats
path: root/application/views/scripts/pool/index.phtml
blob: 1bee0fe7201aa85af1ae4697e5afa188bcc4bee8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

              







                                                                                    


















                                                                                     
















                                                                                         


                                                                                         
                                                                              









                                         
<h1>Pools</h1>

<a href="<?php echo $this->url(
						array(
							'controller' => 'pool',
							'action'     => 'createpool'
						),
						'default',
						true) ?>">create pool</a>

<?php if ($this->pools): ?>
 
    <!-- A table of filters. -->
    <table border=1>
        <tr>
            <th>poolID</th>
			<th>Title</th>
			<th>Description</th>
			<th>Location</th>
        </tr>
	<?php foreach ($this->pools as $pool): ?>
	 	<tr class='pool'>
			<td><?php echo $this->escape($pool->getID()) ?></td>
			<td><?php echo $this->escape($pool->getTitle()) ?></td>
			<td><?php echo $this->escape($pool->getDescription()) ?></td>
			<td><?php echo $this->escape($pool->getLocation()) ?></td>
			<td><a href="<?php echo $this->url(
						array(
							'controller' => 'pool',
							'action'     => 'editpool',
							'poolID'	=> $pool->getID()
						),
						'default',
						true) ?>">edit pool</a></td>
			<td><a href="<?php echo $this->url(
						array(
							'controller' => 'pool',
							'action'     => 'deletepool',
							'poolID'	=> $pool->getID()
						),
						'default',
						true) ?>">delete pool</a></td>
			<td><a href="<?php echo $this->url(
						array(
							'controller' => 'pool',
							'action'     => 'linkclient',
							'poolID'	=> $pool->getID()
						),
						'default',
						true) ?>">link client</a></td>
		</tr>
    <?php endforeach ?> 
    </table>
 
<?php else: ?>

 
    <p>There are no pools to display.</p>
 
<?php endif;?>