Add project and column attributes for advanced search
This commit is contained in:
@@ -15,7 +15,22 @@
|
||||
<input type="submit" value="<?= t('Search') ?>" class="btn btn-blue"/>
|
||||
</form>
|
||||
|
||||
<?php if (! empty($values['search']) && $paginator->isEmpty()): ?>
|
||||
<?php if (empty($values['search'])): ?>
|
||||
<div class="listing">
|
||||
<h3><?= t('Advanced search') ?></h3>
|
||||
<p><?= t('Example of query: ') ?><strong>project:"My project" assignee:me due:tomorrow</strong></p>
|
||||
<ul>
|
||||
<li><?= t('Search by project: ') ?><strong>project:"My project"</strong></li>
|
||||
<li><?= t('Search by column: ') ?><strong>column:"Work in progress"</strong></li>
|
||||
<li><?= t('Search by assignee: ') ?><strong>assignee:nobody</strong></li>
|
||||
<li><?= t('Search by color: ') ?><strong>color:Blue</strong></li>
|
||||
<li><?= t('Search by category: ') ?><strong>category:"Feature Request"</strong></li>
|
||||
<li><?= t('Search by description: ') ?><strong>description:"Something to find"</strong></li>
|
||||
<li><?= t('Search by due date: ') ?><strong>due:2015-07-01</strong></li>
|
||||
</ul>
|
||||
<p><a href="http://kanboard.net/documentation/search" target="_blank"><?= t('More examples in the documentation') ?></a></p>
|
||||
</div>
|
||||
<?php elseif (! empty($values['search']) && $paginator->isEmpty()): ?>
|
||||
<p class="alert"><?= t('Nothing found.') ?></p>
|
||||
<?php elseif (! $paginator->isEmpty()): ?>
|
||||
<?= $this->render('search/results', array(
|
||||
|
||||
Reference in New Issue
Block a user