diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-12-23 18:20:57 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-12-23 18:20:57 +0100 |
commit | e8566a57cf1b9cc2eed10429f27840d17da945ef (patch) | |
tree | 9902d9f4dc2e871819af21ede642e50aaab1518b /app/view/templates/home.php | |
parent | 532cdf4bb82ab7cc6fa7659d9aec3ce122b2ec52 (diff) | |
download | wcms-e8566a57cf1b9cc2eed10429f27840d17da945ef.tar.gz wcms-e8566a57cf1b9cc2eed10429f27840d17da945ef.zip |
feature users
Diffstat (limited to 'app/view/templates/home.php')
-rw-r--r-- | app/view/templates/home.php | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/app/view/templates/home.php b/app/view/templates/home.php index 521d985..a59fddf 100644 --- a/app/view/templates/home.php +++ b/app/view/templates/home.php @@ -27,12 +27,11 @@ <div id="main"> -<h2>Articles</h2> +<h2>Pages</h2> <form action="/massedit" method="post"> <div id="massedit"> - <h3>Mass Edit</h3> <select name="massedit" required> <option value="public">set as public</option> <option value="private">set as private</option> @@ -45,19 +44,6 @@ <input type="submit" name="massaction" value="do" onclick="confirmSubmit(event, 'Are you sure')" > - <input type="text" name="targettag" placeholder="add tag"> - <input type="submit" name="massaction" value="add tag" onclick="confirmSubmit(event, 'Are you sure')" > - - <select name="masstemplate"> - <?php - foreach ($table2 as $art) { - echo '<option value="' . $art->id() . '">' . $art->id() . '</option>'; - } - ?> - </select> - - <input type="submit" name="massaction" value="set template" onclick="confirmSubmit(event, 'Are you sure')" > - <input type="hidden" name="action" value="massedit"> </div> |