summaryrefslogtreecommitdiffstats
path: root/application/modules/user/views/scripts/pool/index.phtml
diff options
context:
space:
mode:
authorSimon2011-03-18 11:26:43 +0100
committerSimon2011-03-18 11:26:43 +0100
commit75965675618c0d59ff97ed6cc8a1286d69ba1b8d (patch)
tree94f473ce23b776993926dbd99af692de651d7963 /application/modules/user/views/scripts/pool/index.phtml
parentDatenbank update, PoolController (diff)
downloadpbs2-75965675618c0d59ff97ed6cc8a1286d69ba1b8d.tar.gz
pbs2-75965675618c0d59ff97ed6cc8a1286d69ba1b8d.tar.xz
pbs2-75965675618c0d59ff97ed6cc8a1286d69ba1b8d.zip
PoolController fertig
Diffstat (limited to 'application/modules/user/views/scripts/pool/index.phtml')
-rw-r--r--application/modules/user/views/scripts/pool/index.phtml7
1 files changed, 4 insertions, 3 deletions
diff --git a/application/modules/user/views/scripts/pool/index.phtml b/application/modules/user/views/scripts/pool/index.phtml
index 05b880a..8ebabe8 100644
--- a/application/modules/user/views/scripts/pool/index.phtml
+++ b/application/modules/user/views/scripts/pool/index.phtml
@@ -1,4 +1,5 @@
<h1>Pools</h1>
+<?php if($this->notification != ''){echo $this->notification;} ?>
<?php echo $this->formButton('createconfig', 'Create Pool', array(
'onclick' => 'self.location="/user/pool/createpool"',
'class' => 'addbutton'))?>
@@ -14,7 +15,7 @@
</tr>
<?php foreach ($this->pools as $pool): ?>
<tr class=entry>
- <td><?php echo $this->escape($pool->getID()) ?></td>
+ <!--<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>
@@ -56,7 +57,7 @@
<td colspan=6>
<table>
<tr>
- <th>ClientID</th>
+ <!-- <th>ClientID</th> -->
<th>Mac</th>
<th>Hardwarehash</th>
<th>Actions</th>
@@ -64,7 +65,7 @@
<?php
foreach ($clients as $client): ?>
<tr>
- <td><?php echo $client['clientID'];?></td>
+ <!-- <td><?php echo $client['clientID'];?></td> -->
<?php
$cli = new Application_Model_Client();
$clientMapper = new Application_Model_ClientMapper();