78 lines
2.5 KiB
Text
78 lines
2.5 KiB
Text
<% content_for :heading do %>
|
|
<h1><%= t ".title", :status => @issue.status.humanize, :issue_id => @issue.id %></h1>
|
|
<p><%= @issue.reportable.model_name.human %> : <%= link_to reportable_title(@issue.reportable), reportable_url(@issue.reportable) %></p>
|
|
<p class="text-muted">
|
|
<small>
|
|
<%= @issue.assigned_role %>
|
|
<% if @issue.reports.count > 0 %>
|
|
| <%= t ".reports", :count => @issue.reports.count %>
|
|
<% else %>
|
|
| <%= t ".no_reports" %>
|
|
<% end %>
|
|
| <%= t ".report_created_at",
|
|
:datetime => l(@issue.created_at.to_datetime, :format => :friendly) %>
|
|
<% if @issue.resolved_at? %>
|
|
| <%= t ".last_resolved_at",
|
|
:datetime => l(@issue.resolved_at.to_datetime, :format => :friendly) %>
|
|
<% end %>
|
|
<% if @issue.user_updated %>
|
|
| <%= t ".last_updated_at",
|
|
:datetime => l(@issue.updated_at.to_datetime, :format => :friendly),
|
|
:displayname => @issue.user_updated.display_name %>
|
|
<% end %>
|
|
</small>
|
|
</p>
|
|
<nav class="secondary-actions">
|
|
<ul class="clearfix">
|
|
<% if @issue.may_resolve? %>
|
|
<li><%= link_to t(".resolve"), resolve_issue_url(@issue), :method => :post %></li>
|
|
<% end %>
|
|
<% if @issue.may_ignore? %>
|
|
<li><%= link_to t(".ignore"), ignore_issue_url(@issue), :method => :post %></li>
|
|
<% end %>
|
|
<% if @issue.may_reopen? %>
|
|
<li><%= link_to t(".reopen"), reopen_issue_url(@issue), :method => :post %></li>
|
|
<% end %>
|
|
</ul>
|
|
</nav>
|
|
<% end %>
|
|
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
<h3><%= t ".reports_of_this_issue" %></h3>
|
|
|
|
<% if @read_reports.present? %>
|
|
<div class="bg-light text-muted">
|
|
<h4><%= t ".read_reports" %></h4>
|
|
<%= render "reports", :reports => @read_reports %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% if @unread_reports.any? %>
|
|
<div>
|
|
<h4><%= t ".new_reports" %></h4>
|
|
<%= render "reports", :reports => @unread_reports %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<% if @issue.reported_user %>
|
|
<div class="col-md-4">
|
|
<h3><%= t ".other_issues_against_this_user" %></h3>
|
|
<% if @related_issues.count > 1 %>
|
|
<ul>
|
|
<% @related_issues.each do |issue| %>
|
|
<% if issue.id != @issue.id %>
|
|
<li><%= link_to reportable_title(issue.reportable), issue %></li>
|
|
<% end %>
|
|
<% end %>
|
|
</ul>
|
|
<% else %>
|
|
<p><%= t ".no_other_issues" %></p>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<h3><%= t ".comments_on_this_issue" %></h3>
|
|
<%= render "comments", :comments => @comments %>
|