Sha256: 3632670583661d283a93294e7faec6a984267fa9cf49a0e8115393f8e7c089c5
Contents?: true
Size: 1.31 KB
Versions: 14
Compression:
Stored size: 1.31 KB
Contents
<%= render partial: "decidim/shared/filter_form_help", locals: { skip_to_id: "projects" } %> <%= 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"), title: t(".search"), data: { disable_dynamic_change: true } %> <div class="input-group-button"> <button type="submit" class="button" aria-controls="projects"> <%= icon "magnifying-glass", aria_label: t(".search"), role: "img", "aria-hidden": true %> </button> </div> </div> </div> </div> <% if voting_finished? %> <%= form.check_boxes_tree :status, filter_status_values, legend_title: t(".status"), "aria-controls": "projects" %> <% end %> <% if current_component.has_subscopes? %> <%= form.check_boxes_tree :scope_id, resource_filter_scope_values(budget.scope), legend_title: t(".scope"), "aria-controls": "projects" %> <% end %> <% if current_participatory_space.categories.any? %> <%= form.check_boxes_tree :category_id, filter_categories_values, legend_title: t(".category"), "aria-controls": "projects" %> <% end %> <%= hidden_field_tag :order, order, id: nil, class: "order_filter" %> <% end %>
Version data entries
14 entries across 14 versions & 1 rubygems