Sha256: 8e32e893ae1d14296483734872cff27fd90d7225079aabf3341c48adbfe9bad1

Contents?: true

Size: 1.48 KB

Versions: 6

Compression:

Stored size: 1.48 KB

Contents

<%= filter_form_for filter do |form| %>
  <div class="filters__section">
    <div class="filters__search">
      <div class="input-group">
        <%= form.search_field :search_text, label: false, class: "input-group-field", placeholder: t(".search") %>
        <div class="input-group-button">
          <button type="submit" class="button button--muted">
            <%= icon "magnifying-glass", aria_label: t(".search") %>
          </button>
        </div>
      </div>
    </div>
  </div>

  <% if component_settings.plan_answering_enabled && current_settings.plan_answering_enabled %>
    <%= form.collection_radio_buttons :state, [["except_rejected", t(".except_rejected")], ["accepted", t(".accepted")], ["evaluating", t(".evaluating")], ["rejected", t(".rejected")], ["all", t(".all")]], :first, :last, legend_title: t(".state") %>
  <% end %>

  <% if linked_classes_for(Decidim::Plans::Plan).any? %>
    <%= form.collection_radio_buttons :related_to, linked_classes_filter_values_for(Decidim::Plans::Plan), :first, :last, legend_title: t(".related_to") %>
  <% end %>

  <% if current_participatory_space.has_subscopes? %>
    <%= scopes_picker_filter form, :scope_id %>
  <% end %>

  <% if current_component.categories.any? %>
    <%= form.categories_select :category_id, current_component.categories, legend_title: t(".category"), disable_parents: false, label: false, prompt: t(".category_prompt") %>
  <% end %>

  <%= hidden_field_tag :order, order, id: nil, class: "order_filter" %>
<% end %>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
decidim-plans-0.16.3 app/views/decidim/plans/plans/_filters.html.erb
decidim-plans-0.16.2 app/views/decidim/plans/plans/_filters.html.erb
decidim-plans-0.16.1 app/views/decidim/plans/plans/_filters.html.erb
decidim-plans-0.16.0 app/views/decidim/plans/plans/_filters.html.erb
decidim-plans-0.15.1 app/views/decidim/plans/plans/_filters.html.erb
decidim-plans-0.15.0 app/views/decidim/plans/plans/_filters.html.erb