X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d49922eb630abb73c7faffb650ab97b3c5d94c52..68d6b7279e547afab98057a2ea4c64ef3c53e37f:/app/views/issues/show.html.erb diff --git a/app/views/issues/show.html.erb b/app/views/issues/show.html.erb index d756595cf..eba4448aa 100644 --- a/app/views/issues/show.html.erb +++ b/app/views/issues/show.html.erb @@ -1,29 +1,66 @@ <% content_for :heading do %> -

Issue #<%= @issue.id %>
Status: <%= @issue. status %>

-

Issue against: <%= reportable_url(@issue.reportable) %>

-

Issue type: <%= @issue.reportable_type %>

-

- - <%= @issue.reports.count %> reports | First reported: <%= l @issue.created_at.to_date, :format => :long %> | <%= "Last resolved at #{l(@issue.resolved_at.to_datetime, :format =>:long)}" if @issue.resolved? %> - -

-

<%= link_to "Resolve", resolve_issue_url(@issue), :method => :post if @issue.may_resolve? %>

-

<%= link_to "Ignore", ignore_issue_url(@issue), :method => :post if @issue.may_ignore? %>

-

<%= link_to "Reopen", reopen_issue_url(@issue), :method => :post if @issue.may_reopen? %>

+

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

+

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

+

+ + <%= @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 %> + +

+ <% end %> -

Reports under this issue:

+
+
+

<%= t ".reports_of_this_issue" %>

-<% if @read_reports.present? %> -
-

Read Reports:

- <%= render 'reports',reports: @read_reports %> -
-<% end %> + <% if @read_reports.present? %> +
+

<%= t ".read_reports" %>

+ <%= render "reports", :reports => @read_reports %> +
+ <% end %> -<% if @unread_reports.any? %> -
-

New Reports:

- <%= render 'reports',reports: @unread_reports %> -
-<% end %> + <% if @unread_reports.any? %> +
+

<%= t ".new_reports" %>

+ <%= render "reports", :reports => @unread_reports %> +
+ <% end %> +
+ + <% if @issue.reported_user %> +
+

<%= t ".other_issues_against_this_user" %>

+ <% if @related_issues.count > 1 %> + + <% else %> +

<%= t ".no_other_issues" %>

+ <% end %> +
+ <% end %> +
+ +

<%= t ".comments_on_this_issue" %>

+<%= render "comments", :comments => @comments %>