2006-07-29 23:54:22 +04:00
|
|
|
<h2><%=l(:label_issue_plural)%></h2>
|
2006-10-22 18:47:25 +04:00
|
|
|
<div class="topright">
|
|
|
|
<small>
|
|
|
|
<%= link_to 'PDF ', :action => 'export_issues_pdf', :id => @project %> |
|
|
|
|
<%= link_to 'CSV ', :action => 'export_issues_csv', :id => @project %>
|
|
|
|
</small>
|
|
|
|
</div>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
|
|
|
<form method="post" class="noborder">
|
2006-07-29 23:54:22 +04:00
|
|
|
<table cellpadding=2>
|
2006-06-28 22:11:03 +04:00
|
|
|
<tr>
|
2006-07-29 23:54:22 +04:00
|
|
|
<td><small><%=l(:field_status)%>:</small><br /><%= search_filter_tag 'status_id', :class => 'select-small' %></td>
|
|
|
|
<td><small><%=l(:field_tracker)%>:</small><br /><%= search_filter_tag 'tracker_id', :class => 'select-small' %></td>
|
|
|
|
<td><small><%=l(:field_priority)%>:</small><br /><%= search_filter_tag 'priority_id', :class => 'select-small' %></td>
|
|
|
|
<td><small><%=l(:field_category)%>:</small><br /><%= search_filter_tag 'category_id', :class => 'select-small' %></td>
|
|
|
|
<td><small><%=l(:field_fixed_version)%>:</small><br /><%= search_filter_tag 'fixed_version_id', :class => 'select-small' %></td>
|
2006-10-22 18:47:25 +04:00
|
|
|
<td><small><%=l(:field_author)%>:</small><br /><%= search_filter_tag 'author_id', :class => 'select-small' %></td>
|
2006-07-29 23:54:22 +04:00
|
|
|
<td><small><%=l(:field_assigned_to)%>:</small><br /><%= search_filter_tag 'assigned_to_id', :class => 'select-small' %></td>
|
|
|
|
<td><small><%=l(:label_subproject_plural)%>:</small><br /><%= search_filter_tag 'subproject_id', :class => 'select-small' %></td>
|
2006-06-28 22:11:03 +04:00
|
|
|
<td valign="bottom">
|
2006-10-21 14:38:53 +04:00
|
|
|
<%= hidden_field_tag 'set_filter', 1 %>
|
2006-07-29 23:54:22 +04:00
|
|
|
<%= submit_tag l(:button_apply), :class => 'button-small' %>
|
2006-06-28 22:11:03 +04:00
|
|
|
</td>
|
2006-10-21 14:38:53 +04:00
|
|
|
<td valign="bottom">
|
|
|
|
<%= link_to l(:button_clear), :action => 'list_issues', :id => @project, :set_filter => 1 %>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2006-07-03 23:38:10 +04:00
|
|
|
</table>
|
2006-10-21 14:38:53 +04:00
|
|
|
<%= end_form_tag %>
|
|
|
|
|
2006-07-03 23:38:10 +04:00
|
|
|
|
2006-09-02 17:33:23 +04:00
|
|
|
<table class="listTableContent">
|
2006-10-15 18:33:04 +04:00
|
|
|
<tr>
|
|
|
|
<td colspan="6" align="left"><small><%= check_all_links 'issues_form' %></small></td>
|
2006-10-22 18:47:25 +04:00
|
|
|
<td colspan="2" align="right">
|
|
|
|
<small><%= l(:label_per_page) %>:</small>
|
|
|
|
<%= start_form_tag %>
|
|
|
|
<%= select_tag 'per_page', options_for_select(@results_per_page_options, @results_per_page), :class => 'select-small'%>
|
|
|
|
<%= submit_tag l(:button_apply), :class => 'button-small'%>
|
|
|
|
<%= end_form_tag %>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<%= start_form_tag ({:controller => 'projects', :action => 'move_issues', :id => @project}, :id => 'issues_form' ) %>
|
|
|
|
<table class="listTableContent">
|
|
|
|
|
2006-10-15 18:33:04 +04:00
|
|
|
<tr class="ListHead">
|
|
|
|
<td></td>
|
2006-07-29 23:54:22 +04:00
|
|
|
<%= sort_header_tag('issues.id', :caption => '#') %>
|
|
|
|
<%= sort_header_tag('issue_statuses.name', :caption => l(:field_status)) %>
|
|
|
|
<%= sort_header_tag('issues.tracker_id', :caption => l(:field_tracker)) %>
|
|
|
|
<th><%=l(:field_subject)%></th>
|
|
|
|
<%= sort_header_tag('users.lastname', :caption => l(:field_author)) %>
|
|
|
|
<%= sort_header_tag('issues.created_on', :caption => l(:field_created_on)) %>
|
|
|
|
<%= sort_header_tag('issues.updated_on', :caption => l(:field_updated_on)) %>
|
|
|
|
</tr>
|
|
|
|
<% for issue in @issues %>
|
|
|
|
<tr bgcolor="#<%= issue.status.html_color %>">
|
2006-10-15 18:33:04 +04:00
|
|
|
<td width="15"><%= check_box_tag "issue_ids[]", issue.id %></td>
|
2006-07-29 23:54:22 +04:00
|
|
|
<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-10-15 18:33:04 +04:00
|
|
|
</p>
|
|
|
|
<%= submit_tag l(:button_move) %>
|
|
|
|
<%= end_form_tag %>
|