diff options
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 f767b13..3c2db4d 100644 --- a/app/view/templates/home.php +++ b/app/view/templates/home.php @@ -29,20 +29,20 @@ <div class="block"> - <h2>Pages (<?= count($table2) ?>)</h2> + <h2 class="hidephone">Pages (<?= count($table2) ?>)</h2> <div class="scroll"> <table id="home2table"> <thead> <tr> - <th>x</th> + <th class="hidephone">x</th> <th><a href="<?= $opt->getadress('id') ?>">id</a></th> <th>edit</th> <th>see</th> <th class="delete" title="delete page">del</th> <?php if ($user->issupereditor()) { ?> - <th class="download" title="download page as json">dl</th> + <th class="download hidephone" title="download page as json">dl</th> <?php } if ($columns['tag']) { ?> <th class="tag"><a href="<?= $opt->getadress('tag') ?>">tag</a></th> @@ -85,13 +85,13 @@ <tbody> <?php foreach ($table2 as $item) { ?> <tr> - <td><input type="checkbox" name="id[]" value="<?= $item->id() ?>" id="id_<?= $item->id() ?>"></td> + <td class="hidephone"><input type="checkbox" name="id[]" value="<?= $item->id() ?>" id="id_<?= $item->id() ?>"></td> <td><label title="<?= $item->title() ?>" for="id_<?= $item->id() ?>"><?= $item->id() ?></label></td> <td><a href="<?= $this->upage('pageedit', $item->id()) ?>"><img src="<?= Model::iconpath() ?>edit.png" class="icon"></a></td> <td><a href="<?= $this->upage('pageread/', $item->id()) ?>" target="_blank"><img src="<?= Model::iconpath() ?>read.png" class="icon"></a></td> <td class="delete"><a href="<?= $this->upage('pagedelete', $item->id()) ?>">✖</a></td> <?php if ($user->issupereditor()) { ?> - <td><a href="<?= $this->upage('pagedownload', $item->id()) ?>" download><img src="<?= Model::iconpath() ?>download.png" class="icon"></a></td> + <td class="hidephone"><a href="<?= $this->upage('pagedownload', $item->id()) ?>" download><img src="<?= Model::iconpath() ?>download.png" class="icon"></a></td> <?php } if ($columns['tag']) { ?> <td class="tag"><a title="<?= $item->tag('string') ?>"><?= $item->tag('sort') ?></a></td> |