diff options
| author | Simon | 2011-03-09 16:31:58 +0100 |
|---|---|---|
| committer | Simon | 2011-03-09 16:31:58 +0100 |
| commit | 3d04fb75a980dba20e51dc91afd49f0eb9ee43fe (patch) | |
| tree | 11a095d4a8a372a4042d3c18e2fc15d780a76a95 /application/views/scripts/pool/index.phtml | |
| parent | datenbankfehler behoben (diff) | |
| download | pbs2-3d04fb75a980dba20e51dc91afd49f0eb9ee43fe.tar.gz pbs2-3d04fb75a980dba20e51dc91afd49f0eb9ee43fe.tar.xz pbs2-3d04fb75a980dba20e51dc91afd49f0eb9ee43fe.zip | |
Form-Verhalten geändert & Datenbank korrigiert
Diffstat (limited to 'application/views/scripts/pool/index.phtml')
| -rw-r--r-- | application/views/scripts/pool/index.phtml | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/application/views/scripts/pool/index.phtml b/application/views/scripts/pool/index.phtml index f89dbc9..2c6ba16 100644 --- a/application/views/scripts/pool/index.phtml +++ b/application/views/scripts/pool/index.phtml @@ -43,6 +43,11 @@ 'default', true) ?>"><img src='/media/img/add.png' alt='Link Client'/></a></td> </tr> + <?php + $poolentriesMapper = new Application_Model_PoolEntriesMapper(); + $clients = $poolentriesMapper->findBy('poolID',$pool->getID()); + ?> + <?php if (count($clients)>0): ?> <tr class=detail> <td class=arrowtop>↳</td> <td colspan=6> @@ -54,8 +59,6 @@ <th>Actions</th> </tr> <?php - $poolentriesMapper = new Application_Model_PoolEntriesMapper(); - $clients = $poolentriesMapper->findBy('poolID',$pool->getID()); foreach ($clients as $client): ?> <tr> <td><?php echo $client['clientID'];?></td> @@ -77,14 +80,18 @@ </tr> <?php endforeach ?> </table> + </td> + </tr> + <?php endif;?> <?php endforeach ?> </table> <h2>Free clients</h2> <table > -<tr><th>ClientID</th><th>MacAdress</th><th>Hardwarehash</th> -<?php foreach ($this->pools as $pool): ?> - <th><?php echo $this->escape($pool->getTitle()) ?></th> - <?php endforeach ?> +<tr> +<th>ClientID</th> +<th>MacAdress</th> +<th>Hardwarehash</th> +<th>Actions</th> </tr> <?php foreach ($this->freeclients as $client): ?> @@ -92,7 +99,8 @@ foreach ($this->freeclients as $client): ?> <td><?php echo $client['clientID']; ?></td> <td><?php echo $client['macadress']; ?></td> <td><?php echo $client['hardwarehash']; ?></td> - <td><select> + <td><select onChange="location.href=this.options[this.selectedIndex].value"> + <option></option> <?php foreach ($this->pools as $pool): ?> <option value="<?php echo $this->url( array( |
