summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/pool/index.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/scripts/pool/index.phtml')
-rw-r--r--application/views/scripts/pool/index.phtml20
1 files changed, 11 insertions, 9 deletions
diff --git a/application/views/scripts/pool/index.phtml b/application/views/scripts/pool/index.phtml
index 2df3e52..68fcbc4 100644
--- a/application/views/scripts/pool/index.phtml
+++ b/application/views/scripts/pool/index.phtml
@@ -6,13 +6,14 @@
<?php if ($this->pools): ?>
<table >
<tr>
- <th>poolID</th>
+ <th>ID</th>
<th>Title</th>
<th>Description</th>
<th>Location</th>
+ <th colspan=3>Actions</th>
</tr>
<?php foreach ($this->pools as $pool): ?>
- <tr class='pool'>
+ <tr class=entry>
<td><?php echo $this->escape($pool->getID()) ?></td>
<td><?php echo $this->escape($pool->getTitle()) ?></td>
<td><?php echo $this->escape($pool->getDescription()) ?></td>
@@ -42,14 +43,15 @@
'default',
true) ?>">link client</a></td>
</tr>
- <tr>
- <td>
- </td>
- <td colspan=6><table>
+ <tr class=detail>
+ <td></td>
+ <td colspan=6>
+ <table>
<tr>
- <th>clientID</th>
- <th>mac</th>
- <th>hardwarehash</th>
+ <th>ClientID</th>
+ <th>Mac</th>
+ <th>Hardwarehash</th>
+ <th>Actions</th>
</tr>
<?php
$poolentriesMapper = new Application_Model_PoolEntriesMapper();