X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/8a5c9a8052489c04a64856c2f0579647a1637326..49e257200e26a11719cfa154a6c87efba1550a1b:/app/views/notes/index.html.erb?ds=sidebyside diff --git a/app/views/notes/index.html.erb b/app/views/notes/index.html.erb index d5efe0d79..f805a1040 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" %>

@@ -34,7 +48,7 @@ <%= link_to note.id, note %> <%= note_author(note.author) %> - <%= note.comments.first.body.to_html %> + <%= note.description.to_html %> <%= friendly_date_ago(note.created_at) %> <%= friendly_date_ago(note.updated_at) %>