Sha256: 76ec9e0227a08e99c3bef63c21e6a05f6132b29773e3057ae1cb56b9258d6403
Contents?: true
Size: 1.72 KB
Versions: 11
Compression:
Stored size: 1.72 KB
Contents
<%= render partial: "decidim/shared/filter_form_help", locals: { skip_to_id: "meetings" } %> <%= filter_form_for filter do |form| %> <div class="filters__section"> <div class="filters__search"> <div class="input-group"> <%= form.search_field :search_text_cont, label: false, class: "input-group-field", placeholder: t(".search"), title: t(".search"), "aria-label": t(".search"), data: { disable_dynamic_change: true } %> <div class="input-group-button"> <button type="submit" class="button" aria-controls="meetings"> <%= icon "magnifying-glass", aria_label: t(".search"), role: "img" %> </button> </div> </div> </div> </div> <%= form.hidden_field "with_availability", value: params.dig("filter", "with_availability") %> <% unless @forced_past_meetings %> <%= form.collection_radio_buttons :with_any_date, filter_date_values, :first, :last, legend_title: t(".date") %> <% end %> <%= form.check_boxes_tree :with_any_type, filter_type_values, legend_title: t(".type") %> <% if current_component.has_subscopes? %> <%= form.check_boxes_tree :with_any_scope, filter_scopes_values, legend_title: t(".scope") %> <% end %> <% if current_component.categories.any? %> <%= form.check_boxes_tree :with_any_category, filter_categories_values, legend_title: t(".category") %> <% end %> <% if component_settings.creation_enabled_for_participants? %> <%= form.check_boxes_tree :with_any_origin, filter_origin_values, legend_title: t(".origin") %> <% end %> <% if current_user %> <%= form.collection_radio_buttons :activity, activity_filter_values, :first, :last, { legend_title: t(".activity") }, "aria-controls": "meetings" %> <% end %> <% end %>
Version data entries
11 entries across 11 versions & 1 rubygems