Created
March 8, 2017 18:51
-
-
Save kopylovvlad/34c746d6d991c3c24f94037a13a9d680 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
= form_tag '/search', method: 'GET' do | |
= text_field_tag :query, params[:query] | |
= submit_tag 'Искать' | |
- if @searching.present? | |
.search_resulting | |
p | |
| Были найдены следующие результаты | |
- @searching.results.each do |result| | |
.search_result | |
h3= result[:hint][:title] | |
p= result[:hint][:preview] | |
br | |
small= result[:hint][:type] | |
br | |
= link_to 'Подробнее', search_result_link(result) | |
.search_paging | |
= will_paginate @searching.raw_data | |
- unless @searching.present? | |
p К сожалению, ничего не найдено |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment