2006-06-28 22:11:03 +04:00
|
|
|
<h2><%=_('Issues')%></h2>
|
|
|
|
|
|
|
|
<form method="post" class="noborder">
|
|
|
|
<table cellpadding=2>
|
|
|
|
<tr>
|
2006-07-09 20:30:01 +04:00
|
|
|
<td><small><%=_('Status')%>:</small><br /><%= search_filter_tag 'status_id', :class => 'select-small' %></td>
|
|
|
|
<td><small><%=_('Tracker')%>:</small><br /><%= search_filter_tag 'tracker_id', :class => 'select-small' %></td>
|
|
|
|
<td><small><%=_('Priority')%>:</small><br /><%= search_filter_tag 'priority_id', :class => 'select-small' %></td>
|
|
|
|
<td><small><%=_('Category')%>:</small><br /><%= search_filter_tag 'category_id', :class => 'select-small' %></td>
|
2006-07-29 13:32:58 +04:00
|
|
|
<td><small><%=_('Fixed in version')%>:</small><br /><%= search_filter_tag 'fixed_version_id', :class => 'select-small' %></td>
|
2006-07-09 20:30:01 +04:00
|
|
|
<td><small><%=_('Assigned to')%>:</small><br /><%= search_filter_tag 'assigned_to_id', :class => 'select-small' %></td>
|
|
|
|
<td><small><%=_('Subprojects')%>:</small><br /><%= search_filter_tag 'subproject_id', :class => 'select-small' %></td>
|
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
<td valign="bottom">
|
2006-07-09 20:30:01 +04:00
|
|
|
<%= submit_tag _('Apply filter'), :class => 'button-small' %>
|
2006-06-28 22:11:03 +04:00
|
|
|
<%= end_form_tag %>
|
|
|
|
|
|
|
|
<%= start_form_tag %>
|
2006-07-09 20:30:01 +04:00
|
|
|
<%= submit_tag _('Reset'), :class => 'button-small' %>
|
2006-06-28 22:11:03 +04:00
|
|
|
<%= end_form_tag %>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2006-07-03 23:38:10 +04:00
|
|
|
</table>
|
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
<table border="0" cellspacing="1" cellpadding="2" class="listTableContent">
|
|
|
|
|
2006-07-03 23:38:10 +04:00
|
|
|
<tr><td colspan="7" align="right">
|
|
|
|
<small><%= link_to 'Export to CSV', :action => 'export_issues_csv', :id => @project.id %></small>
|
|
|
|
</td></tr>
|
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
<tr class="ListHead">
|
|
|
|
<%= sort_header_tag('issues.id', :caption => '#') %>
|
|
|
|
<%= sort_header_tag('issue_statuses.name', :caption => _('Status')) %>
|
|
|
|
<%= sort_header_tag('issues.tracker_id', :caption => _('Tracker')) %>
|
|
|
|
<th><%=_('Subject')%></th>
|
|
|
|
<%= sort_header_tag('users.lastname', :caption => _('Author')) %>
|
|
|
|
<%= sort_header_tag('issues.created_on', :caption => _('Created on')) %>
|
|
|
|
<%= sort_header_tag('issues.updated_on', :caption => _('Last update')) %>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<% for issue in @issues %>
|
|
|
|
<tr bgcolor="#<%= issue.status.html_color %>">
|
|
|
|
<td align="center"><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %></td>
|
|
|
|
<td align="center"><%= issue.status.name %></td>
|
|
|
|
<td align="center"><%= issue.tracker.name %></td>
|
|
|
|
<td><%= link_to issue.subject, :controller => 'issues', :action => 'show', :id => issue %></td>
|
|
|
|
<td align="center"><%= issue.author.display_name %></td>
|
|
|
|
<td align="center"><%= format_time(issue.created_on) %></td>
|
|
|
|
<td align="center"><%= format_time(issue.updated_on) %></td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</table>
|
|
|
|
<p>
|
|
|
|
<%= pagination_links_full @issue_pages %>
|
|
|
|
[ <%= @issue_pages.current.first_item %> - <%= @issue_pages.current.last_item %> / <%= @issue_count %> ]
|
2006-07-29 13:32:58 +04:00
|
|
|
</p>
|