summaryrefslogtreecommitdiffstats
path: root/application/views/scripts
diff options
context:
space:
mode:
authorSimon2011-03-02 15:09:46 +0100
committerSimon2011-03-02 15:09:46 +0100
commit5d161755f849a2ec6b3ba80ea5690dd5c61f79d8 (patch)
treeff335f2e773f581512a135c3d3fbb141f55493bd /application/views/scripts
parenteinricht script wegen mysql-pw geupdated (diff)
downloadpbs2-5d161755f849a2ec6b3ba80ea5690dd5c61f79d8.tar.gz
pbs2-5d161755f849a2ec6b3ba80ea5690dd5c61f79d8.tar.xz
pbs2-5d161755f849a2ec6b3ba80ea5690dd5c61f79d8.zip
Die Models geändert da kein return der Objekte angegeben war && FilterController
Diffstat (limited to 'application/views/scripts')
-rw-r--r--application/views/scripts/filter/index.phtml1
-rw-r--r--application/views/scripts/person/index.phtml22
2 files changed, 22 insertions, 1 deletions
diff --git a/application/views/scripts/filter/index.phtml b/application/views/scripts/filter/index.phtml
new file mode 100644
index 0000000..bace90f
--- /dev/null
+++ b/application/views/scripts/filter/index.phtml
@@ -0,0 +1 @@
+<br /><br /><center>View script for controller <b>Filter</b> and script/action name <b>index</b></center> \ No newline at end of file
diff --git a/application/views/scripts/person/index.phtml b/application/views/scripts/person/index.phtml
index 7a96e97..710e08f 100644
--- a/application/views/scripts/person/index.phtml
+++ b/application/views/scripts/person/index.phtml
@@ -1 +1,21 @@
-<br /><br /><center>View script for controller <b>Person</b> and script/action name <b>index</b></center> \ No newline at end of file
+<?php if ($this->filters): ?>
+
+ <!-- A table of filters. -->
+ <table>
+ <tr>
+ <th>filterid</th>
+ </tr>
+
+ <?php foreach ($this->filters as $key => $val): ?>
+ <tr>
+ <td><?php echo $this->escape($val['title']) ?></td>
+ </tr>
+ <?php endforeach; ?>
+
+ </table>
+
+<?php else: ?>
+
+ <p>There are no filters to display.</p>
+
+<?php endif;?>