OSDN Git Service

added svn:eol-style native property on /app files
[redminele/redmine.git] / app / views / issues / _list_simple.rhtml
1 <% if issues.length > 0 %>
2         <table class="list">            
3                 <thead><tr>
4                 <th>#</th>
5                 <th><%=l(:field_tracker)%></th>
6                 <th><%=l(:field_subject)%></th>
7                 </tr></thead>
8                 <tbody> 
9                 <% for issue in issues %>
10                 <tr class="<%= cycle("odd", "even") %>">
11                         <th align="center">
12                                 <%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %>
13                         </th>
14                         <td><p class="small"><%= issue.project.name %> - <%= issue.tracker.name %><br />
15                 <%= issue.status.name %> - <%= format_time(issue.updated_on) %></p></td>
16                         <td>
17                 <p class="small"><%= link_to h(issue.subject), :controller => 'issues', :action => 'show', :id => issue %></p>
18             </td>
19                 </tr>
20                 <% end %>
21                 </tbody>
22         </table>
23 <% else %>
24         <i><%=l(:label_no_data)%></i>
25 <% end %>