mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
* Make some heading translatable * set focus back to search phrase input after clicking a predicate * Some spacing issues
84 lines
2.7 KiB
Text
84 lines
2.7 KiB
Text
template(name="globalSearchHeaderBar")
|
|
if currentUser
|
|
h1
|
|
i.fa.fa-search
|
|
| {{_ 'globalSearch-title'}}
|
|
|
|
template(name="globalSearchModalTitle")
|
|
if currentUser
|
|
h2
|
|
i.fa.fa-keyboard-o
|
|
| {{_ 'globalSearch-title'}}
|
|
|
|
template(name="globalSearch")
|
|
if currentUser
|
|
.wrapper
|
|
form.global-search-instructions.js-search-query-form
|
|
input.global-search-query-input(
|
|
id="global-search-input"
|
|
type="text"
|
|
name="searchQuery"
|
|
placeholder="{{_ 'search-example'}}"
|
|
value="{{ query.get }}"
|
|
autofocus dir="auto"
|
|
)
|
|
if searching.get
|
|
+spinner
|
|
else if hasResults.get
|
|
.global-search-results-list-wrapper
|
|
if hasQueryErrors.get
|
|
div
|
|
each msg in errorMessages
|
|
span.global-search-error-messages
|
|
| {{_ msg.tag msg.value }}
|
|
else
|
|
h1
|
|
= resultsHeading.get
|
|
a.fa.fa-link(title="{{_ 'link-to-search' }}" href="{{ getSearchHref }}")
|
|
each card in results
|
|
+resultCard(card)
|
|
else
|
|
.global-search-instructions
|
|
h2 {{_ 'boards' }}
|
|
.lists-wrapper
|
|
each title in myBoardNames.get
|
|
span.card-label.list-title.js-board-title
|
|
= title
|
|
h2 {{_ 'lists' }}
|
|
.lists-wrapper
|
|
each title in myLists.get
|
|
span.card-label.list-title.js-list-title
|
|
= title
|
|
h2 {{_ 'label-colors' }}
|
|
.palette-colors: each label in labelColors
|
|
span.card-label.palette-color.js-label-color(class="card-label-{{label.color}}")
|
|
= label.name
|
|
if myLabelNames.get.length
|
|
h2 {{_ 'label-names' }}
|
|
.lists-wrapper
|
|
each name in myLabelNames.get
|
|
span.card-label.list-title.js-label-name
|
|
= name
|
|
+viewer
|
|
= searchInstructions
|
|
|
|
template(name="globalSearchViewChangePopup")
|
|
if currentUser
|
|
ul.pop-over-list
|
|
li
|
|
with "globalSearchViewChange-choice-me"
|
|
a.js-global-search-view-me
|
|
i.fa.fa-user.colorful
|
|
| {{_ 'globalSearchViewChange-choice-me'}}
|
|
if $eq Utils.globalSearchView "me"
|
|
i.fa.fa-check
|
|
li
|
|
with "globalSearchViewChange-choice-all"
|
|
a.js-global-search-view-all
|
|
i.fa.fa-users.colorful
|
|
| {{_ 'globalSearchViewChange-choice-all'}}
|
|
span.sub-name
|
|
+viewer
|
|
| {{_ 'globalSearchViewChange-choice-all-description' }}
|
|
if $eq Utils.globalSearchView "all"
|
|
i.fa.fa-check
|