X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/d49922eb630abb73c7faffb650ab97b3c5d94c52..948fd8c8faf1016d:/app/views/issues/show.html.erb?ds=sidebyside diff --git a/app/views/issues/show.html.erb b/app/views/issues/show.html.erb index d756595cf..e9d68d27c 100644 --- a/app/views/issues/show.html.erb +++ b/app/views/issues/show.html.erb @@ -1,29 +1,60 @@ <% content_for :heading do %> -
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? %>
+<%= 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 #{@issue.user_updated.display_name}" if @issue.user_updated %> + +
++ <%= 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 %> -