|
<%= link_to_remote l(:button_apply),
:url => { :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 },
:update => "content",
:with => "Form.serialize('query_form')" %>
|
<%= link_to l(:button_clear), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %>
<% if authorize_for('projects', 'add_query') %>
|
<%= link_to_remote l(:button_save),
:url => { :controller => 'projects', :action => "add_query", :id => @project },
:method => 'get',
:update => "content",
:with => "Form.serialize('query_form')" %>
<% end %>
|
<% else %>
<% if authorize_for('projects', 'add_query') %>
<%= link_to l(:button_edit), :controller => 'queries', :action => 'edit', :id => @query %>
<%= link_to l(:button_delete), {:controller => 'queries', :action => 'destroy', :id => @query}, :confirm => l(:text_are_you_sure), :post => true %>
<% end %>
| <%= check_all_links 'issues_form' %> |
<%= l(:label_per_page) %>:
<%= 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 %>
|
<%= start_form_tag({:controller => 'projects', :action => 'move_issues', :id => @project}, :id => 'issues_form' ) %>
|
<%= 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)) %>
<%=l(:field_subject)%> |
<%= 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)) %>
<% for issue in @issues %>
">
| <%= check_box_tag "issue_ids[]", issue.id %> |
<%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %> |
<%= issue.status.name %> |
<%= issue.tracker.name %> |
<%= link_to issue.subject, :controller => 'issues', :action => 'show', :id => issue %> |
<%= issue.author.display_name %> |
<%= format_time(issue.created_on) %> |
<%= format_time(issue.updated_on) %> |
<% end %>
<%= pagination_links_full @issue_pages %>
[ <%= @issue_pages.current.first_item %> - <%= @issue_pages.current.last_item %> / <%= @issue_count %> ]
<%= submit_tag l(:button_move) %>
<%= end_form_tag %>
<% end %>