|
|
<div class="contextual">
|
|
|
<% if User.current.allowed_to?(:add_issues, @project, :global => true) && (@project.nil? || Issue.allowed_target_trackers(@project).any?) %>
|
|
|
<%= link_to l(:label_issue_new), _new_project_issue_path(@project), :class => 'icon icon-add new-issue' %>
|
|
|
<% end %>
|
|
|
</div>
|
|
|
|
|
|
<h2><%= @query.new_record? ? l(:label_issue_plural) : @query.name %></h2>
|
|
|
<% html_title(@query.new_record? ? l(:label_issue_plural) : @query.name) %>
|
|
|
|
|
|
<%= form_tag(_project_issues_path(@project), :method => :get, :id => 'query_form') do %>
|
|
|
<%= render :partial => 'queries/query_form' %>
|
|
|
<% end %>
|
|
|
|
|
|
<% if @query.valid? %>
|
|
|
<% if @issues.empty? %>
|
|
|
<p class="nodata"><%= l(:label_no_data) %></p>
|
|
|
<% else %>
|
|
|
<%= render_query_totals(@query) %>
|
|
|
<%= render :partial => 'issues/list', :locals => {:issues => @issues, :query => @query} %>
|
|
|
<span class="pagination"><%= pagination_links_full @issue_pages, @issue_count %></span>
|
|
|
<% end %>
|
|
|
|
|
|
<% other_formats_links do |f| %>
|
|
|
<%= f.link_to_with_query_parameters 'Atom', :key => User.current.rss_key %>
|
|
|
<%= f.link_to_with_query_parameters 'CSV', {}, :onclick => "showModal('csv-export-options', '350px'); return false;" %>
|
|
|
<%= f.link_to_with_query_parameters 'PDF' %>
|
|
|
<% end %>
|
|
|
|
|
|
<div id="csv-export-options" style="display:none;">
|
|
|
<h3 class="title"><%= l(:label_export_options, :export_format => 'CSV') %></h3>
|
|
|
<%= form_tag(_project_issues_path(@project, :format => 'csv'), :method => :get, :id => 'csv-export-form') do %>
|
|
|
<%= query_as_hidden_field_tags(@query) %>
|
|
|
<%= hidden_field_tag 'sort', @sort_criteria.to_param, :id => nil %>
|
|
|
<p>
|
|
|
<label><%= radio_button_tag 'c[]', '', true %> <%= l(:description_selected_columns) %></label><br />
|
|
|
<label><%= radio_button_tag 'c[]', 'all_inline' %> <%= l(:description_all_columns) %></label>
|
|
|
</p>
|
|
|
<p>
|
|
|
<label><%= check_box_tag 'c[]', 'description', @query.has_column?(:description) %> <%= l(:field_description) %></label>
|
|
|
</p>
|
|
|
<% if @issue_count > Setting.issues_export_limit.to_i %>
|
|
|
<p class="icon icon-warning">
|
|
|
<%= l(:setting_issues_export_limit) %>: <%= Setting.issues_export_limit.to_i %>
|
|
|
</p>
|
|
|
<% end %>
|
|
|
<p class="buttons">
|
|
|
<%= submit_tag l(:button_export), :name => nil, :onclick => "hideModal(this);" %>
|
|
|
<%= submit_tag l(:button_cancel), :name => nil, :onclick => "hideModal(this);", :type => 'button' %>
|
|
|
</p>
|
|
|
<% end %>
|
|
|
</div>
|
|
|
|
|
|
<% end %>
|
|
|
<%= call_hook(:view_issues_index_bottom, { :issues => @issues, :project => @project, :query => @query }) %>
|
|
|
|
|
|
<% content_for :sidebar do %>
|
|
|
<%= render :partial => 'issues/sidebar' %>
|
|
|
<% end %>
|
|
|
|
|
|
<% content_for :header_tags do %>
|
|
|
<%= auto_discovery_link_tag(:atom,
|
|
|
{:query_id => @query, :format => 'atom',
|
|
|
:page => nil, :key => User.current.rss_key},
|
|
|
:title => l(:label_issue_plural)) %>
|
|
|
<%= auto_discovery_link_tag(:atom,
|
|
|
{:controller => 'journals', :action => 'index',
|
|
|
:query_id => @query, :format => 'atom',
|
|
|
:page => nil, :key => User.current.rss_key},
|
|
|
:title => l(:label_changes_details)) %>
|
|
|
<% end %>
|
|
|
|
|
|
<%= context_menu %>
|
|
|
|