From: Tom Hughes Date: Tue, 9 Jan 2024 18:56:25 +0000 (+0000) Subject: Merge remote-tracking branch 'upstream/pull/4466' X-Git-Tag: live~887 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/ddd22cdda69a198afd298831bb8569e3315351e4?hp=55a793150dbb2caa0bc2d6ad69a85515fa23e58d Merge remote-tracking branch 'upstream/pull/4466' --- diff --git a/app/views/issues/_comments.html.erb b/app/views/issues/_comments.html.erb index 9c5695e0a..7776d9ee3 100644 --- a/app/views/issues/_comments.html.erb +++ b/app/views/issues/_comments.html.erb @@ -7,7 +7,8 @@

<%= t ".comment_from_html", :user_link => link_to(comment.user.display_name, user_path(comment.user)), - :comment_created_at => l(comment.created_at.to_datetime, :format => :friendly) %> + :comment_created_at => tag.time(l(comment.created_at.to_datetime, :format => :friendly), + :datetime => comment.created_at.xmlschema) %>

<%= comment.body.to_html %>
diff --git a/app/views/issues/_reports.html.erb b/app/views/issues/_reports.html.erb index d11bca0a9..9ef28f1c2 100644 --- a/app/views/issues/_reports.html.erb +++ b/app/views/issues/_reports.html.erb @@ -7,7 +7,8 @@

<%= t ".reported_by_html", :category => report.category, :user => link_to(report.user.display_name, user_path(report.user)), - :updated_at => l(report.updated_at.to_datetime, :format => :friendly) %> + :updated_at => tag.time(l(report.updated_at.to_datetime, :format => :friendly), + :datetime => report.updated_at.xmlschema) %>

<%= report.details.to_html %>
diff --git a/app/views/issues/show.html.erb b/app/views/issues/show.html.erb index 62bd501b7..e2099f8e6 100644 --- a/app/views/issues/show.html.erb +++ b/app/views/issues/show.html.erb @@ -9,9 +9,20 @@ <% else %> | <%= t ".no_reports" %> <% end %> - | <%= t ".report_created_at", :datetime => l(@issue.created_at.to_datetime, :format => :friendly) %> - <%= " | #{t('.last_resolved_at', :datetime => l(@issue.resolved_at.to_datetime, :format => :friendly))}" if @issue.resolved_at? %> - <%= " | #{t('.last_updated_at', :datetime => l(@issue.updated_at.to_datetime, :format => :friendly), :displayname => @issue.user_updated.display_name)}" if @issue.user_updated %> + | <%= t ".report_created_at_html", + :datetime => tag.time(l(@issue.created_at.to_datetime, :format => :friendly), + :datetime => @issue.created_at.xmlschema) %> + <% if @issue.resolved_at? %> + | <%= t ".last_resolved_at_html", + :datetime => tag.time(l(@issue.resolved_at.to_datetime, :format => :friendly), + :datetime => @issue.resolved_at.xmlschema) %> + <% end %> + <% if @issue.user_updated %> + | <%= t ".last_updated_at_html", + :datetime => tag.time(l(@issue.updated_at.to_datetime, :format => :friendly), + :datetime => @issue.updated_at.xmlschema), + :displayname => link_to(@issue.user_updated.display_name, user_path(@issue.user_updated)) %> + <% end %>