X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d49922eb630abb73c7faffb650ab97b3c5d94c52..d56b1400bc13432afe38a679a8b9028fff1e0453:/app/views/issues/show.html.erb?ds=inline diff --git a/app/views/issues/show.html.erb b/app/views/issues/show.html.erb index d756595cf..e97479b90 100644 --- a/app/views/issues/show.html.erb +++ b/app/views/issues/show.html.erb @@ -1,29 +1,60 @@ <% 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? %>

+

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

+

<%= report_type(@issue.reportable_type) %> : <%= 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 #{@updated_by_admin.display_name}" if @updated_by_admin %> + +

+

+ <%= link_to t('issues.resolve'), resolve_issue_url(@issue), :method => :post if @issue.may_resolve? %> + <% if @issue.may_ignore? %> + | <%= link_to t('issues.ignore'), ignore_issue_url(@issue), :method => :post %> + <% end %> +

+

<%= link_to t('issues.reopen'), reopen_issue_url(@issue), :method => :post if @issue.may_reopen? %>

<% end %> -

Reports under this issue:

+ + +

Comments on this issue:

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