summaryrefslogtreecommitdiff
path: root/app/Template/search/activity.php
blob: 1dfd9234d111adf4e5f76348e334529c8f7c02a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<section id="main">
    <div class="page-header">
        <ul>
            <li>
                <i class="fa fa-search fa-fw"></i>
                <?= $this->url->link(t('Search tasks'), 'SearchController', 'index') ?>
            </li>
        </ul>
    </div>

    <div class="filter-box">
        <form method="get" action="<?= $this->url->dir() ?>" class="search">
            <?= $this->form->hidden('controller', $values) ?>
            <?= $this->form->hidden('action', $values) ?>

            <div class="input-addon">
                <?= $this->form->text('search', $values, array(), array(empty($values['search']) ? 'autofocus' : '', 'placeholder="'.t('Search').'"'), 'input-addon-field') ?>
                <div class="input-addon-item">
                    <?= $this->render('app/filters_helper') ?>
                </div>
            </div>
        </form>
    </div>

    <?php if (empty($values['search'])): ?>
        <div class="listing">
            <h3><?= t('Advanced search') ?></h3>
            <p><?= t('Example of query: ') ?><strong>project:"My project" creator:me</strong></p>
            <ul>
                <li><?= t('Search by project: ') ?><strong>project:"My project"</strong></li>
                <li><?= t('Search by creator: ') ?><strong>creator:admin</strong></li>
                <li><?= t('Search by creation date: ') ?><strong>created:today</strong></li>
                <li><?= t('Search by task status: ') ?><strong>status:open</strong></li>
                <li><?= t('Search by task title: ') ?><strong>title:"My task"</strong></li>
            </ul>
            <p><i class="fa fa-external-link fa-fw"></i><?= $this->url->doc(t('View advanced search syntax'), 'search') ?></p>
        </div>
    <?php elseif (! empty($values['search']) && $nb_events === 0): ?>
        <p class="alert"><?= t('Nothing found.') ?></p>
    <?php else: ?>
        <?= $this->render('event/events', array('events' => $events)) ?>
    <?php endif ?>

</section>