Nils Diewald | 0ec142f | 2015-05-05 00:29:23 +0000 | [diff] [blame] | 1 | % layout 'main', title => loc('searchtitle', q => search->query, ql => search->query_language); |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 2 | |
| 3 | <div class="resultinfo"> |
Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 4 | <div id="pagination"><%= pagination(search->start_page, search->total_pages, url_with->query(['p' => '{page}'])) =%></div> |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 5 | |
Nils Diewald | 8f4b5da | 2014-12-03 22:13:39 +0000 | [diff] [blame] | 6 | % my $found = search->total_results; |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 7 | % if ($found != -1) { |
Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 8 | % my $found_text = loc('numf', number => $found); |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 9 | % if (search->time_exceeded) { |
Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 10 | % $found_text = '> ' . $found_text; |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 11 | % }; |
| 12 | <p class="found"><span id="total-results"><%= $found_text %></span> <%= loc('matchCount', found => $found) %></p> |
Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 13 | %# <% if (search->benchmark) { %> (~ <%= search->benchmark %>)<% } %> |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 14 | % } else { |
| 15 | <p></p> |
| 16 | % }; |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 17 | </div> |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 18 | |
Akron | 27ae9ec | 2015-06-23 00:43:21 +0200 | [diff] [blame^] | 19 | %= include 'query' |
Akron | 9cc3eaf | 2015-06-10 22:15:52 +0200 | [diff] [blame] | 20 | |
Nils Diewald | 4af3f0b | 2014-06-25 01:43:17 +0000 | [diff] [blame] | 21 | <div id="search"> |
Akron | 48b1e4d | 2015-06-17 18:47:01 +0200 | [diff] [blame] | 22 | % if (search->total_results != 0 && search->results->size) { |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 23 | <ol class="align-left"> |
| 24 | %= search_results begin |
| 25 | %= include 'match', match => $_ |
Nils Diewald | 4af3f0b | 2014-06-25 01:43:17 +0000 | [diff] [blame] | 26 | % end |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 27 | </ol> |
Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 28 | % } else { |
| 29 | <p id="no-results"><%== loc 'noMatches', q => search->query %></p> |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 30 | % } |
Akron | 48b1e4d | 2015-06-17 18:47:01 +0200 | [diff] [blame] | 31 | </div> |