Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/pull/4466'
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Jan 9, 2024
2 parents 55a7931 + c3f5753 commit ddd22cd
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
3 changes: 2 additions & 1 deletion app/views/issues/_comments.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
<div class="col">
<p class="text-muted">
<%= 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) %>
</p>
<div class="richtext text-break"><%= comment.body.to_html %></div>
</div>
Expand Down
3 changes: 2 additions & 1 deletion app/views/issues/_reports.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
<p class="text-muted">
<%= 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) %>
</p>
<div class="richtext text-break"><%= report.details.to_html %></div>
</div>
Expand Down
17 changes: 14 additions & 3 deletions app/views/issues/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -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 %>
</small>
</p>
<nav class="secondary-actions">
Expand Down
6 changes: 3 additions & 3 deletions config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1439,9 +1439,9 @@ en:
one: "%{count} report"
other: "%{count} reports"
no_reports: No reports
report_created_at: "First reported at %{datetime}"
last_resolved_at: "Last resolved at %{datetime}"
last_updated_at: "Last updated at %{datetime} by %{displayname}"
report_created_at_html: "First reported at %{datetime}"
last_resolved_at_html: "Last resolved at %{datetime}"
last_updated_at_html: "Last updated at %{datetime} by %{displayname}"
resolve: Resolve
ignore: Ignore
reopen: Reopen
Expand Down

0 comments on commit ddd22cd

Please sign in to comment.