X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/47362f432a9bd10196b27aa1667e6166b76f4b66..a25b7953b3889ce6847a13c579fa9fd32219b5e3:/app/views/notes/index.html.erb
diff --git a/app/views/notes/index.html.erb b/app/views/notes/index.html.erb
index 2eb99b812..c88312665 100644
--- a/app/views/notes/index.html.erb
+++ b/app/views/notes/index.html.erb
@@ -1,6 +1,23 @@
<% content_for :heading do %>
<%= t ".heading", :user => @user.display_name %>
- <%= t ".subheading_html", :user => link_to(@user.display_name, user_path(@user)) %>
+ <%= t ".subheading_html",
+ :user => link_to(@user.display_name, @user),
+ :submitted => tag.span(t(".subheading_submitted"), :class => "px-2 py-1 bg-primary bg-opacity-25"),
+ :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? %>
@@ -21,12 +38,12 @@
<% @notes.each do |note| -%>
- class="creator"<% end %>>
+
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 %> |