summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/client/index.phtml
diff options
context:
space:
mode:
authorSimon2011-03-08 14:03:43 +0100
committerSimon2011-03-08 14:03:43 +0100
commit83fb7e34d99c0006c1c43d58c81ba4e4445f5688 (patch)
tree5bd5b6737312573fc4688899c8c26fb0c394581a /application/views/scripts/client/index.phtml
parentpbs-data um beispeildaten ergänzt (diff)
downloadpbs2-83fb7e34d99c0006c1c43d58c81ba4e4445f5688.tar.gz
pbs2-83fb7e34d99c0006c1c43d58c81ba4e4445f5688.tar.xz
pbs2-83fb7e34d99c0006c1c43d58c81ba4e4445f5688.zip
clients editierbar
Diffstat (limited to 'application/views/scripts/client/index.phtml')
-rw-r--r--application/views/scripts/client/index.phtml16
1 files changed, 15 insertions, 1 deletions
diff --git a/application/views/scripts/client/index.phtml b/application/views/scripts/client/index.phtml
index 4095a5f..0eb28b8 100644
--- a/application/views/scripts/client/index.phtml
+++ b/application/views/scripts/client/index.phtml
@@ -1,7 +1,13 @@
<h1>Clients</h1>
<?php if ($this->clients): ?>
-
+ <a href="<?php echo $this->url(
+ array(
+ 'controller' => 'client',
+ 'action' => 'addclient'
+ ),
+ 'default',
+ true) ?>">add client</a>
<!-- A table of filters. -->
<table border=1>
<tr>
@@ -17,6 +23,14 @@
<td><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(
+ array(
+ 'controller' => 'client',
'action' => 'removeclient',
'clientID' => $client->getID()
),