MitinPavel/hello_monument

View on GitHub
app/views/dashboards/show.html.haml

Summary

Maintainability
Test Coverage
= form_tag root_path, method: :get, id: 'top-search-form' do
  = search_field_tag :query, params[:query], size: 15, maxlength: 128, placeholder: "Search"
  = submit_tag "Search"

#search_results
  - @monuments.each do |monument|
    .jumbotron
      = div_for monument do
        = link_to monument.name, monument_pictures_path(monument)