<%= title %>

Project notes

In this section you'll find any notes assigned to the Report category.

<% notes.each do |note| %>
<%= markup(note.text) %>
<% end %>

Project issues

In this section you'll find your project's Issues.

<% issues.each do |issue| %>
<%= markup(issue.text) %>

Assets affected by this issue

<% if issue.affected.empty? %>

None so far.

<% else %>
<% issue.evidence_by_node.each do |node, instances| %>
<% if instances.count == 1 %>
<%= markup(instances.first.content) %>
<% else %>
<% instances.each_with_index do |evidence, i| %>
<%= markup(evidence.content) %>
<% end %>
<% end %>
<% end %>
<% end %>
<% end %>