-<% if @read_reports.present? %>
- <div class="read-reports">
- <h4>Read Reports:</h4>
- <%= render 'reports',reports: @read_reports %>
+ <div class="report-block">
+ <h3>Reports under this issue:</h3>
+
+ <% if @read_reports.present? %>
+ <div class="read-reports">
+ <h4>Read Reports:</h4>
+ <%= render 'reports',reports: @read_reports %>
+ </div>
+ <% end %>
+
+ <% if @unread_reports.any? %>
+ <div class="unread-reports">
+ <h4>New Reports:</h4>
+ <%= render 'reports',reports: @unread_reports %>
+ </div>
+ <% end %>
+ <br/>
+ </div>
+
+ <div class="related-block">
+ <h3> Other issues against this user: </h3>
+ <div class="unread-reports">
+ <% if @related_issues.count > 1 %>
+ <% @related_issues.each do |issue| %>
+ <% if issue.id != @issue.id %>
+ <%= link_to "#{issue.reportable_type} ##{issue.reportable_id}", issue %> <br/>
+ <% end %>
+ <% end %>
+ <% else %>
+ <p>No other reports against this user!</p>
+ <% end %>
+ </div>