blob: bbaf0b8a3bd1a67c99c347a81ae84114af677cf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<h1><%= t(".title") %></h1>
<%= form_tag chapters_nodes_path, method: :get, class: "search_form" do %>
<label><%= check_box_tag 'kinds[]', 'erfa', @kind_keys.include?('erfa') %> Erfa</label>
<label><%= check_box_tag 'kinds[]', 'chaostreff', @kind_keys.include?('chaostreff') %> Chaostreff</label>
<%= button_tag type: "submit", class: "action_button" do %>
<%= icon("filter", library: "tabler", "aria-hidden": true) %> <%= t(".filter") %>
<% end %>
<% end %>
<%= render 'node_list' %>
|