18 lines
510 B
Text
18 lines
510 B
Text
<h1>Search for a package/description:</h1>
|
|
|
|
<%= form_tag(url_for, method: "get") do %>
|
|
<%= text_field_tag :search, params[:search], autofocus: true, placeholder: 'What are you looking for...' %>
|
|
|
|
|
With screenshots? <%= check_box_tag 'with_screenshots', 'yes', params[:with_screenshots] %>
|
|
|
|
|
<%= submit_tag "Search" %>
|
|
<% end %>
|
|
|
|
<div class="container">
|
|
|
|
<h1>Search results</h1>
|
|
|
|
<!--<div class="row-fluid">-->
|
|
<%= render "packages_search_results", object: @packages %>
|
|
<!--</div>-->
|
|
</div>
|