X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/7f3cb3c6246e6e271761e714cceb081e85a4d245..2c19c2143ec51e507d19b41fb6c89454b3d83dfc:/app/views/notes/index.html.erb
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) %> |