]> git.openstreetmap.org Git - rails.git/commitdiff
Add color keys to note tables
authorAnton Khorev <tony29@yandex.ru>
Thu, 17 Aug 2023 16:20:37 +0000 (19:20 +0300)
committerAnton Khorev <tony29@yandex.ru>
Thu, 17 Aug 2023 16:26:26 +0000 (19:26 +0300)
app/views/notes/index.html.erb
config/locales/en.yml

index dd0cb26082f64a0a64e26731ef391063abede125..ef625163400ceac7c75eb9c903fffa30c4c0fc95 100644 (file)
@@ -1,6 +1,9 @@
 <% content_for :heading do %>
   <h1><%= t ".heading", :user => @user.display_name %></h1>
-  <p><%= t ".subheading_html", :user => link_to(@user.display_name, user_path(@user)) %></p>
+  <p><%= t ".subheading_html",
+           :user => link_to(@user.display_name, user_path(@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-white") %></p>
 <% end %>
 
 <% if @notes.empty? %>
index e14c5806ccfb3df5955041d517a2ec10244d5fe9..7635c483dd94534f647a174f68b69fcb8ea6dca8 100644 (file)
@@ -2878,7 +2878,9 @@ en:
     index:
       title: "Notes submitted or commented on by %{user}"
       heading: "%{user}'s Notes"
-      subheading_html: "Notes submitted or commented on by %{user}"
+      subheading_html: "Notes %{submitted} or %{commented} by %{user}"
+      subheading_submitted: "submitted"
+      subheading_commented: "commented on"
       no_notes: No notes
       id: "Id"
       creator: "Creator"