summaryrefslogtreecommitdiffstats
path: root/application/views
diff options
context:
space:
mode:
authorSimon2011-03-02 17:36:39 +0100
committerSimon2011-03-02 17:36:39 +0100
commitfb85535fa927ad70a63fbeafd008325ca2fa749e (patch)
tree3af8282740c036478ca26059851cbcb8ffbf8713 /application/views
parentNeue Filter hinzufügen (diff)
downloadpbs2-fb85535fa927ad70a63fbeafd008325ca2fa749e.tar.gz
pbs2-fb85535fa927ad70a63fbeafd008325ca2fa749e.tar.xz
pbs2-fb85535fa927ad70a63fbeafd008325ca2fa749e.zip
Änderungen an den Filtern
Diffstat (limited to 'application/views')
-rw-r--r--application/views/scripts/filter/index.phtml10
1 files changed, 10 insertions, 0 deletions
diff --git a/application/views/scripts/filter/index.phtml b/application/views/scripts/filter/index.phtml
index 0f9b51e..33043dc 100644
--- a/application/views/scripts/filter/index.phtml
+++ b/application/views/scripts/filter/index.phtml
@@ -13,10 +13,20 @@
<table border=1>
<tr>
<th>filterid</th>
+ <th>filterID</th>
</tr>
<?php foreach ($this->filters as $filter): ?>
<tr>
+ <td><?php echo $this->escape($filter->getID()) ?></td>
<td><?php echo $this->escape($filter->title) ?></td>
+ <td><a href="<?php echo $this->url(
+ array(
+ 'controller' => 'filter',
+ 'action' => 'editfilter',
+ 'filterID' => $filter->getID()
+ ),
+ 'default',
+ true) ?>">edit filter</a></td>
</tr>
<?php endforeach ?>