diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-11-11 22:04:49 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-11-11 22:04:49 +0100 |
commit | a64af357ff41a61f5248e2052274315b390e979c (patch) | |
tree | f08323727b1b2a1fc86f8290777cf847f9604334 /app/view/templates/home.php | |
parent | cea923a1e82a7e8ce696418c3a5a0f7703871101 (diff) | |
download | wcms-a64af357ff41a61f5248e2052274315b390e979c.tar.gz wcms-a64af357ff41a61f5248e2052274315b390e979c.zip |
clean
Diffstat (limited to 'app/view/templates/home.php')
-rw-r--r-- | app/view/templates/home.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/view/templates/home.php b/app/view/templates/home.php index 2303f0f..5c3a007 100644 --- a/app/view/templates/home.php +++ b/app/view/templates/home.php @@ -1,4 +1,4 @@ -<?php $this->layout('layout', ['title' => 'home']) ?> +<?php $this->layout('layout', ['title' => 'home', 'css' => $css . 'home.css']) ?> @@ -80,10 +80,10 @@ <tr> <td><input type="checkbox" name="id[]" value="<?= $item->id() ?>" id="<?= $item->id() ?>"></td> <td><label title="<?= $item->title() ?>" for="<?= $item->id() ?>"><?= $item->id() ?></label></td> - <td><a href="?id=<?= $item->id() ?>&aff=edit">β</a></td> - <td><a href="?id=<?= $item->id() ?>" target="_blank">π</a></td> - <td><a href="?id=<?= $item->id() ?>&action=delete" >π</a></td> - <td><a href="?id=<?= $item->id() ?>&aff=log" target="_blank">ΒΆ</a></td> + <td><a href="<?= $this->uart('artedit', $item->id()) ?>">β</a></td> + <td><a href="<?= $this->uart('artread/', $item->id()) ?>" target="_blank">π</a></td> + <td><a href="<?= $this->uart('artdelete', $item->id()) ?>" >π</a></td> + <td><a href="<?= $this->uart('artlog', $item->id()) ?>" target="_blank">ΒΆ</a></td> <td><?= $item->tag('sort') ?></td> <td><?= $item->description() ?></td> <td><?= $item->linkto('sort') ?></td> |