summaryrefslogtreecommitdiff
path: root/app/views/version_reports/_issue_row.html.erb
blob: 25c11c6f8f9f3579278a901da6f67f0467558eb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<tr>
  <td>
    <%= ("&nbsp;" * 4 * indent).html_safe %>
    <%= display_issue(issue, :tracker) %>
  </td>
  <td>
    <%= issue_time(issue) %>
  </td>
  <td>
    &nbsp;
  </td>
</tr>
<%- if issue.children.any? -%>
<%-   issue.children.each do |child| -%>
<%=     render :partial => 'issue_row', :locals => {:issue => child, :indent => indent+1} %>
<%-   end -%>
<%- end -%>