X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/ad4ab4603b27f2e89e4bb4a709bc04a6685ba67b..738e66afa6231390f52679fe8b343478643f5684:/app/views/notes/index.html.erb diff --git a/app/views/notes/index.html.erb b/app/views/notes/index.html.erb index d5efe0d79..c88312665 100644 --- a/app/views/notes/index.html.erb +++ b/app/views/notes/index.html.erb @@ -6,6 +6,20 @@ :commented => tag.span(t(".subheading_commented"), :class => "px-2 py-1 bg-body") %>

<% end %> +<%= form_with :url => user_notes_path(@user), :method => :get, :data => { :turbo => true } do %> +
+
+ <%= label_tag :status, t(".status") %> + <%= select_tag :status, + options_for_select([[t(".all"), "all"], [t(".open"), "open"], [t(".closed"), "closed"]], params[:status] || "all"), + :class => "form-select" %> +
+
+ <%= submit_tag t(".apply"), :name => nil, :class => "btn btn-primary" %> +
+
+<% end %> + <% if @notes.empty? %>

<%= t ".no_notes" %>