1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-06 05:55:25 +02:00
documize/gui/app/pods/search/template.hbs

36 lines
1.4 KiB
Handlebars
Raw Normal View History

2017-12-11 14:39:12 +00:00
{{toolbar/nav-bar}}
2017-11-29 11:09:54 +00:00
2017-12-15 13:41:20 +00:00
{{#toolbar/t-toolbar}}
{{#toolbar/t-links}}
{{#link-to "folders" class="link" tagName="li" }}Spaces{{/link-to}}
2017-12-15 13:41:20 +00:00
{{/toolbar/t-links}}
{{#toolbar/t-actions}}
{{/toolbar/t-actions}}
{{/toolbar/t-toolbar}}
2017-11-29 11:09:54 +00:00
2017-12-15 13:41:20 +00:00
<div class="container">
2017-11-29 11:09:54 +00:00
<div class="view-search mt-5">
<div class="heading">Search</div>
<div class="form-group mt-4">
{{focus-input type="text" value=filter class="form-control mb-4" placeholder='a OR b, x AND y, "phrase mat*"'}}
<div class="form-check form-check-inline">
{{input type="checkbox" id="search-1" class="form-check-input" checked=matchDoc}}
<label class="form-check-label" for="search-1">&nbsp;document title</label>
2017-11-29 11:09:54 +00:00
</div>
<div class="form-check form-check-inline">
{{input type="checkbox" id="search-2" class="form-check-input" checked=matchContent}}
<label class="form-check-label" for="search-2">&nbsp;content</label>
2017-11-29 11:09:54 +00:00
</div>
<div class="form-check form-check-inline">
{{input type="checkbox" id="search-3" class="form-check-input" checked=matchTag}}
<label class="form-check-label" for="search-3">&nbsp;tag name</label>
2017-11-29 11:09:54 +00:00
</div>
<div class="form-check form-check-inline">
{{input type="checkbox" id="search-4" class="form-check-input" checked=matchFile}}
<label class="form-check-label" for="search-4">&nbsp;attachment name</label>
2017-03-23 18:28:42 +00:00
</div>
</div>
2017-11-29 11:09:54 +00:00
{{search/search-results results=results}}
</div>
</div>