##// END OF EJS Templates
Fixes row background for alternate theme (#15361)....
Fixes row background for alternate theme (#15361). git-svn-id: http://svn.redmine.org/redmine/trunk@16250 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15837:d10ab869a743
r15868:8d713ae6ca64
Show More
index.html.erb
72 lines | 3.2 KiB | text/plain | TextLexer
Jean-Philippe Lang
Makes saved query filters visible (#2883)....
r2778 <div class="contextual">
Jean-Philippe Lang
Adds Issue#allowed_target_trackers (#7839)....
r15048 <% if User.current.allowed_to?(:add_issues, @project, :global => true) && (@project.nil? || Issue.allowed_target_trackers(@project).any?) %>
Jean-Philippe Lang
Adds a "New issue" link on the global issue list (#6204)....
r14963 <%= link_to l(:label_issue_new), _new_project_issue_path(@project), :class => 'icon icon-add new-issue' %>
Jean-Philippe Lang
Removed the "New issue" menu item (#6204)....
r14962 <% end %>
Jean-Philippe Lang
Makes saved query filters visible (#2883)....
r2778 </div>
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <h2><%= @query.new_record? ? l(:label_issue_plural) : @query.name %></h2>
Etienne Massip
Remove unecessary page title HTML escaping from views (#9252)....
r7445 <% html_title(@query.new_record? ? l(:label_issue_plural) : @query.name) %>
Jean-Philippe Lang
Makes saved query filters visible (#2883)....
r2778
Jean-Philippe Lang
Make time entries groupable (#16843)....
r15267 <%= form_tag(_project_issues_path(@project), :method => :get, :id => 'query_form') do %>
<%= render :partial => 'queries/query_form' %>
Jean-Philippe Lang
Added a cross-project issue list. It displays the issues of all the projects visible by the user....
r673 <% end %>
Jean-Philippe Lang
Ticket grouping (#2679)....
r2604
Jean-Philippe Lang
Added a cross-project issue list. It displays the issues of all the projects visible by the user....
r673 <% if @query.valid? %>
<% if @issues.empty? %>
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 <p class="nodata"><%= l(:label_no_data) %></p>
Jean-Philippe Lang
Added a cross-project issue list. It displays the issues of all the projects visible by the user....
r673 <% else %>
Jean-Philippe Lang
Adds options to display totals on the issue list (#1561)....
r14260 <%= render_query_totals(@query) %>
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 <%= render :partial => 'issues/list', :locals => {:issues => @issues, :query => @query} %>
Jean-Philippe Lang
Use ul tags to do pagination (#21258)....
r14515 <span class="pagination"><%= pagination_links_full @issue_pages, @issue_count %></span>
Eric Davis
Allow the other format links to appear on the issue list (ATOM, PDF, CSV)....
r2425 <% end %>
Jean-Philippe Lang
Display links to Atom feeds (closes #496, #750)....
r1171
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% other_formats_links do |f| %>
Jean-Philippe Lang
Don't generate urls with params....
r15249 <%= 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' %>
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% end %>
Jean-Philippe Lang
Adds a dialog box for CSV export options (#4742)....
r7754 <div id="csv-export-options" style="display:none;">
Jean-Philippe Lang
Adds query params as hidden field tags to the CSV export form (#22108)....
r14820 <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) %>
Jean-Philippe Lang
Sort criteria defined in custom queries are not applied when exporting to CSV (#22354)....
r14916 <%= hidden_field_tag 'sort', @sort_criteria.to_param, :id => nil %>
Jean-Philippe Lang
Adds a dialog box for CSV export options (#4742)....
r7754 <p>
Jean-Philippe Lang
Handle csv columns selection in query to preload appropriate associations (#24865)....
r15837 <label><%= radio_button_tag 'c[]', '', true %> <%= l(:description_selected_columns) %></label><br />
<label><%= radio_button_tag 'c[]', 'all_inline' %> <%= l(:description_all_columns) %></label>
Jean-Philippe Lang
Adds a dialog box for CSV export options (#4742)....
r7754 </p>
<p>
Jean-Philippe Lang
Handle csv columns selection in query to preload appropriate associations (#24865)....
r15837 <label><%= check_box_tag 'c[]', 'description', @query.has_column?(:description) %> <%= l(:field_description) %></label>
Jean-Philippe Lang
Adds a dialog box for CSV export options (#4742)....
r7754 </p>
Jean-Philippe Lang
Show warning when exported issues exceed the limit (#13770)....
r12388 <% 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 %>
Jean-Philippe Lang
CSS class for modal box buttons....
r7811 <p class="buttons">
Jean-Philippe Lang
Adds a dialog box for CSV export options (#4742)....
r7754 <%= 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>
Jean-Philippe Lang
Added a cross-project issue list. It displays the issues of all the projects visible by the user....
r673 <% end %>
Eric Davis
Add :view_issues_index_bottom hook. #5169...
r3728 <%= call_hook(:view_issues_index_bottom, { :issues => @issues, :project => @project, :query => @query }) %>
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874
<% content_for :sidebar do %>
<%= render :partial => 'issues/sidebar' %>
Jean-Philippe Lang
Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list (#897, closes #671)....
r1296 <% end %>
Jean-Philippe Lang
Added atom feed on the new cross-project issue list....
r675
<% content_for :header_tags do %>
Toshi MARUYAMA
code layout clean up app/views/issues/index.html.erb...
r8394 <%= 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)) %>
Jean-Philippe Lang
Added atom feed on the new cross-project issue list....
r675 <% end %>
Jean-Philippe Lang
Fixed: context menu not available if the initial issue list is empty....
r1119
Jean-Philippe Lang
Don't use a global variable for storing context menu URL....
r15554 <%= context_menu %>