diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-02-18 16:59:06 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-02-18 16:59:06 -0500 |
commit | 5710bab97198234afced474250f20e24332fd6fc (patch) | |
tree | 812132c5855fc60203ed08496ee890b8285ee1d5 /app/Template/search/activity.php | |
parent | 4d4d7b3e1f03df4381b06a91d5aecf24898549ea (diff) |
Improve search tables
Diffstat (limited to 'app/Template/search/activity.php')
-rw-r--r-- | app/Template/search/activity.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Template/search/activity.php b/app/Template/search/activity.php index 2582162b..6be346b6 100644 --- a/app/Template/search/activity.php +++ b/app/Template/search/activity.php @@ -37,7 +37,9 @@ <?php elseif (! empty($values['search']) && $nb_events === 0): ?> <p class="alert"><?= t('Nothing found.') ?></p> <?php else: ?> - <?= $this->render('event/events', array('events' => $events)) ?> + <div class="margin-top"> + <?= $this->render('event/events', array('events' => $events)) ?> + </div> <?php endif ?> </section> |