diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2019-08-17 00:02:21 +0200 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2019-08-17 00:02:21 +0200 |
commit | 0d863868d69d9e2c9ae3f6f0b22b4d3a1be73ee2 (patch) | |
tree | 976e3466be56ab81969d9ea30604c35f58102c70 /app/view/templates/home.php | |
parent | b5ebee8dea28e3a9c5160de1c56f7715153f3af4 (diff) | |
download | wcms-0d863868d69d9e2c9ae3f6f0b22b4d3a1be73ee2.tar.gz wcms-0d863868d69d9e2c9ae3f6f0b22b4d3a1be73ee2.zip |
Feature : list is going to work soon
Diffstat (limited to 'app/view/templates/home.php')
-rw-r--r-- | app/view/templates/home.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/view/templates/home.php b/app/view/templates/home.php index 922aaf0..c226a9d 100644 --- a/app/view/templates/home.php +++ b/app/view/templates/home.php @@ -26,9 +26,10 @@ <article id="main"> -<h2>Pages</h2> +<h2>Pages (<?= count($table2) ?>)</h2> -<details id="import"> + +<details id="import" class="hidephone"> <summary>Import W JSON page file</summary> <i>Upload page file as json</i> <form action="<?= $this->url('artupload') ?>" method="post" enctype="multipart/form-data"> @@ -53,7 +54,7 @@ </form> </details> -<details id="list" <?= isset($optlist) ? 'open' : '' ?>> +<details id="list" class="hidephone" <?= isset($optlist) ? 'open' : '' ?>> <summary>Generate list</summary> <i>Generate code to display a list of pages</i> <form action="<?= $this->url('homequery') ?>" method="post"> @@ -111,7 +112,6 @@ - <input type="hidden" name="action" value="massedit"> </div> |