diff options
author | Vincent Peugnet <33429034+vincent-peugnet@users.noreply.github.com> | 2019-11-05 18:31:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-05 18:31:05 +0100 |
commit | f1f63f556c41c99d45cd610186b0982383eff375 (patch) | |
tree | c62c88864fa4bdc0d54e0bc90d174fae2d8adce3 /app/view | |
parent | 9b43088415efee1f921feb9c858bcd924f1b6208 (diff) | |
parent | d73bbbcf6c7bfe7291ac1593004581df6c96b3c8 (diff) | |
download | wcms-f1f63f556c41c99d45cd610186b0982383eff375.tar.gz wcms-f1f63f556c41c99d45cd610186b0982383eff375.zip |
Merge pull request #25 from n-peugnet/add-checkall-checkbox
Add checkall checkbox in home page
Diffstat (limited to 'app/view')
-rw-r--r-- | app/view/templates/home.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/view/templates/home.php b/app/view/templates/home.php index 3c2db4d..2ee791a 100644 --- a/app/view/templates/home.php +++ b/app/view/templates/home.php @@ -36,7 +36,7 @@ <table id="home2table"> <thead> <tr> - <th class="hidephone">x</th> + <th id="checkall" class="hidephone">x</th> <th><a href="<?= $opt->getadress('id') ?>">id</a></th> <th>edit</th> <th>see</th> @@ -176,6 +176,7 @@ <?php } ?> + <script src="<?= Model::jspath() ?>home.bundle.js"></script> </body> |