X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/cf4cfc530ae54abee7b6a0dccbc9d4603ab35611..757a1aaa850bf48e45ee1dd2225cda1c9fa47d73:/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 1f57c454e..4611324f3 100644 --- a/app/views/issues/show.html.erb +++ b/app/views/issues/show.html.erb @@ -1,14 +1,17 @@ <% content_for :heading do %> -
Issue against: <%= reportable_url(@issue.reportable) %>
-Issue type: <%= @issue.reportable_type %>
+<%= report_type(@issue.reportable_type) %> : <%= reportable_url(@issue.reportable) %>
- <%= @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_at? %> + <%= @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? %>
-<%= link_to t('issues.ignore'), ignore_issue_url(@issue), :method => :post if @issue.may_ignore? %>
++ <%= 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 %> @@ -20,6 +23,7 @@ <% if @read_reports.present? %>