summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/client
diff options
context:
space:
mode:
authormichael pereira2011-03-09 20:54:27 +0100
committermichael pereira2011-03-09 20:54:27 +0100
commitfbff9df0469ee998389fa263d8638cc3bf3618b5 (patch)
tree04adfd6a021e574055469ce6d0469988cb4684bd /application/views/scripts/client
parentKCL und BootMenuFilter (diff)
parentFilterController Evaluate funktioniert (diff)
downloadpbs2-fbff9df0469ee998389fa263d8638cc3bf3618b5.tar.gz
pbs2-fbff9df0469ee998389fa263d8638cc3bf3618b5.tar.xz
pbs2-fbff9df0469ee998389fa263d8638cc3bf3618b5.zip
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/views/scripts/client')
-rw-r--r--application/views/scripts/client/index.phtml8
1 files changed, 4 insertions, 4 deletions
diff --git a/application/views/scripts/client/index.phtml b/application/views/scripts/client/index.phtml
index 9ef344b..fd7725c 100644
--- a/application/views/scripts/client/index.phtml
+++ b/application/views/scripts/client/index.phtml
@@ -16,22 +16,22 @@
<td><?php echo $this->escape($client->getID()) ?></td>
<td class='monospace'><?php echo $this->escape($client->getMacadress()) ?></td>
<td class='monospace'><?php echo $this->escape($client->getHardwarehash()) ?></td>
- <td><a href="<?php echo $this->url(
+ <td class='action'><a href="<?php echo $this->url(
array(
'controller' => 'client',
'action' => 'editclient',
'clientID' => $client->getID()
),
'default',
- true) ?>">edit client</a></td>
- <td><a href="<?php echo $this->url(
+ true) ?>"><img src='/media/img/edit.png' alt='Edit Client'/></a></td>
+ <td class='action'><a href="<?php echo $this->url(
array(
'controller' => 'client',
'action' => 'removeclient',
'clientID' => $client->getID()
),
'default',
- true) ?>">remove client</a></td>
+ true) ?>"><img src='/media/img/delete.png' alt='Delete Client'/></a></td>
</tr>
<?php endforeach ?>
</table>