我正在尝试使用bootstrap和ransack在Rails中构建表单构建器,但不是workink
我的文件_form正在使用引导程序表单
<%= bootstrap_form_for(@voluntario, layout: :horizontal) do |f| %>
<% if @voluntario.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@voluntario.errors.count, "error") %> prohibited this voluntario from being saved:</h2>
但是在我的文件中索引不起作用,实际上我在索引中使用了gem ransack
<%= search_form_for @search do |f| %>
<div class="field">
<% contacto = {
'Promotores voluntarios' => 'Promotores voluntarios', 'Promotores capacitantes' => 'Promotores capacitantes'} %>
<%= f.label :contacto_cont, "Tipo de Contacto" %>
<%= f.select :contacto_cont,contacto, include_blank: true %>
</div>
如何在我的索引中将bootstrap form_for与ransack form_for结合使用?