summaryrefslogtreecommitdiffstats
path: root/application/views
diff options
context:
space:
mode:
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 ?>