Reputation: 41
In views/articles/index.html.erb:
<%= search_form_for @q do |f| %>
<%= f.label :title %>
<%= f.search_field :title_or_body_cont_any %>
<%= f.submit %>
<% end %>
I tried add class="btn btn-primary" to submit:
<%= f.submit,class="btn btn-primary" %>
but I get error. How can I join Bootstrap class to form_for field?
Upvotes: 0
Views: 151