##// END OF EJS Templates
Fixed: error on activity page when displaying a document (undefined method 'author')....
Fixed: error on activity page when displaying a document (undefined method 'author'). git-svn-id: http://redmine.rubyforge.org/svn/trunk@896 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r844:2ee11c9089f5
r883:a8419c1425b5
Show More
_list_simple.rhtml
24 lines | 853 B | text/html+ruby | RhtmlLexer
<% if issues.length > 0 %>
<table class="list">
<thead><tr>
<th>#</th>
<th><%=l(:field_tracker)%></th>
<th><%=l(:field_subject)%></th>
</tr></thead>
<tbody>
<% for issue in issues %>
<tr class="<%= cycle("odd", "even") %> <%= "status-#{issue.status.position} priority-#{issue.priority.position}" %>">
<td class="id">
<%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %>
</td>
<td><p class="small"><%= issue.project.name %> - <%= issue.tracker.name %><br />
<%= issue.status.name %> - <%= format_time(issue.updated_on) %></p></td>
<td>
<p class="small"><%= link_to h(issue.subject), :controller => 'issues', :action => 'show', :id => issue %></p>
</td>
</tr>
<% end %>
</tbody>
</table>
<% else %>
<i><%=l(:label_no_data)%></i>
<% end %>