diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-12-05 19:34:23 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-12-05 19:34:23 +0100 |
commit | 1d463145d3a1dae2ea91f75d4d854ea0ea4c431e (patch) | |
tree | 057057b69d22dbeb70259b65166b8e1247310c2a /app/view/templates/home.php | |
parent | 7fb607b48c181512b31f52a7ef7e302f331ec18d (diff) | |
download | wcms-1d463145d3a1dae2ea91f75d4d854ea0ea4c431e.tar.gz wcms-1d463145d3a1dae2ea91f75d4d854ea0ea4c431e.zip |
home table sort
Diffstat (limited to 'app/view/templates/home.php')
-rw-r--r-- | app/view/templates/home.php | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/app/view/templates/home.php b/app/view/templates/home.php index 87cdb8d..ac4f158 100644 --- a/app/view/templates/home.php +++ b/app/view/templates/home.php @@ -63,7 +63,21 @@ <table id="home2table"> - <tr><th>x</th><th>id</th><th>edit</th><th>see</th><th>del</th><th>log</th><th>tag</th><th>summary</th><th>↘ to</th><th>↗ from</th><th>last modification</th><th>date of creation</th><th>privacy</th></tr> + <tr> + <th>x</th> + <th><a href="<?= $opt->getadress('id') ?>">id</a></th> + <th>edit</th> + <th>see</th> + <th>del</th> + <th>log</th> + <th><a href="<?= $opt->getadress('tag') ?>">tag</a></th> + <th>summary</th> + <th><a href="<?= $opt->getadress('linkto') ?>">link to</a></th> + <th><a href="<?= $opt->getadress('linkfrom') ?>">linkfrom</a></th> + <th><a href="<?= $opt->getadress('datemodif') ?>">last modification</a></th> + <th><a href="<?= $opt->getadress('datecreation') ?>">date of creation</a></th> + <th><a href="<?= $opt->getadress('secure') ?>">privacy</a></th> + </tr> <?php foreach ($table2 as $item) { ?> <tr> <td><input type="checkbox" name="id[]" value="<?= $item->id() ?>" id="<?= $item->id() ?>"></td> |