X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9c1c69614112e2a911f944df6e15cbcab1fd3e8a..38efcc2f33066ae86f16313c40e0562e42acdbe1:/app/views/issues/show.html.erb diff --git a/app/views/issues/show.html.erb b/app/views/issues/show.html.erb index e9d68d27c..05ce1b9f1 100644 --- a/app/views/issues/show.html.erb +++ b/app/views/issues/show.html.erb @@ -1,9 +1,13 @@ <% content_for :heading do %> -

<%= @issue.status.humanize %> Issue #<%= @issue.id %>

-

<%= report_type(@issue.reportable_type) %> : <%= reportable_url(@issue.reportable) %>

+

<%= t ".title", :status => @issue.status.humanize, :issue_id => @issue.id %>

+

<%= @issue.reportable.model_name.human %> : <%= reportable_url(@issue.reportable) %>

- <%= @issue.reports.count %> reports | First reported: <%= l @issue.created_at.to_datetime, :format => :friendly %> <%= "| Last resolved at #{l(@issue.resolved_at.to_datetime, :format =>:friendly)}" if @issue.resolved_at? %> <%= "| Last updated at #{l(@issue.updated_at.to_datetime, :format => :friendly)} by #{@issue.user_updated.display_name}" if @issue.user_updated %> + <%= @issue.assigned_role %> + | <%= t ".reports", :count => @issue.reports.count %> + | <%= 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 %>

@@ -18,28 +22,26 @@

-

Comments on this issue:

+

<%= t ".comments_on_this_issue" %>

<%= render 'comments', comments: @comments %>