X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b5520a9b39ce7383178f3291188cae7519572688..49e257200e26a11719cfa154a6c87efba1550a1b:/app/views/notes/index.html.erb diff --git a/app/views/notes/index.html.erb b/app/views/notes/index.html.erb index 8622bbf29..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" %>

@@ -27,14 +41,14 @@ class="table-primary"<% end %>> <% if note.closed? %> - <%= image_tag("closed_note_marker.png", :alt => "closed", :size => "25x40") %> + <%= image_tag("closed_note_marker.svg", :alt => "closed", :width => 25, :height => 40) %> <% else %> - <%= image_tag("open_note_marker.png", :alt => "open", :size => "25x40") %> + <%= image_tag("open_note_marker.svg", :alt => "open", :width => 25, :height => 40) %> <% end %> <%= 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) %>