##// END OF EJS Templates
Merged r15490 to r15493, r15496, r15497 (#22951)....
Merged r15490 to r15493, r15496, r15497 (#22951). git-svn-id: http://svn.redmine.org/redmine/branches/3.3-stable@15500 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15071:bc356c81faef
r15118:8516e1c88dfe
Show More
_list.html.erb
44 lines | 1.9 KiB | text/plain | TextLexer
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({}) do -%>
Toshi MARUYAMA
Fix duplicated 'back_url' IDs...
r9130 <%= hidden_field_tag 'back_url', url_for(params), :id => nil %>
Jean-Philippe Lang
Removes overflow:auto on #content which broke the fix in r2118 (#4724)....
r3262 <div class="autoscroll">
Jean-Philippe Lang
Adds css classes to get sort order on the issue list (#17993)....
r13061 <table class="list issues <%= sort_css_classes %>">
Toshi MARUYAMA
code layout cleanup app/views/issues/_list.html.erb...
r10263 <thead>
<tr>
<th class="checkbox hide-when-print">
Jean-Philippe Lang
Replaces the link with a checkbox to select/unselect all items in the list....
r14347 <%= check_box_tag 'check_all', '', false, :class => 'toggle-selection',
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %>
Toshi MARUYAMA
code layout cleanup app/views/issues/_list.html.erb...
r10263 </th>
Jean-Philippe Lang
Adds an option for displaying the issue description on the issue list (#3447)....
r10721 <% query.inline_columns.each do |column| %>
Toshi MARUYAMA
code layout cleanup app/views/issues/_list.html.erb...
r10263 <%= column_header(column) %>
<% end %>
</tr>
</thead>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list.html.erb...
r7114 <tbody>
Jean-Philippe Lang
Display totals for each group on grouped queries (#1561)....
r14283 <% grouped_issue_list(issues, @query, @issue_count_by_group) do |issue, level, group_name, group_count, group_totals| -%>
Jean-Philippe Lang
Extract grouping logic to an helper....
r13590 <% if group_name %>
Jean-Philippe Lang
Ticket grouping (#2679)....
r2604 <% reset_cycle %>
Jean-Philippe Lang
Adds group folding on issue list (#2679)....
r2615 <tr class="group open">
Jean-Philippe Lang
Merged r15452 (#22932)....
r15071 <td colspan="<%= query.inline_columns.size + 1 %>">
Jean-Philippe Lang
Removed useless return false; statement....
r7752 <span class="expander" onclick="toggleRowGroup(this);">&nbsp;</span>
Jean-Philippe Lang
Display totals for each group on grouped queries (#1561)....
r14283 <span class="name"><%= group_name %></span> <span class="count"><%= group_count %></span> <span class="totals"><%= group_totals %></span>
Toshi MARUYAMA
code layout cleanup app/views/issues/_list.html.erb...
r10263 <%= link_to_function("#{l(:button_collapse_all)}/#{l(:button_expand_all)}",
"toggleAllRowGroups(this)", :class => 'toggle-all') %>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list.html.erb...
r7114 </td>
</tr>
Jean-Philippe Lang
Ticket grouping (#2679)....
r2604 <% end %>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list.html.erb...
r7114 <tr id="issue-<%= issue.id %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= issue.css_classes %> <%= level > 0 ? "idnt idnt-#{level}" : nil %>">
<td class="checkbox hide-when-print"><%= check_box_tag("ids[]", issue.id, false, :id => nil) %></td>
Jean-Philippe Lang
Adds an option for displaying the issue description on the issue list (#3447)....
r10721 <%= raw query.inline_columns.map {|column| "<td class=\"#{column.css_classes}\">#{column_content(column, issue)}</td>"}.join %>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list.html.erb...
r7114 </tr>
Jean-Philippe Lang
Adds an option for displaying the issue description on the issue list (#3447)....
r10721 <% @query.block_columns.each do |column|
if (text = column_content(column, issue)) && text.present? -%>
<tr class="<%= current_cycle %>">
Jean-Philippe Lang
Refactor: makes issue id a regular QueryColumn....
r11217 <td colspan="<%= @query.inline_columns.size + 1 %>" class="<%= column.css_classes %>"><%= text %></td>
Jean-Philippe Lang
Adds an option for displaying the issue description on the issue list (#3447)....
r10721 </tr>
<% end -%>
<% end -%>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list.html.erb...
r7114 <% end -%>
</tbody>
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 </table>
Jean-Philippe Lang
Removes overflow:auto on #content which broke the fix in r2118 (#4724)....
r3262 </div>
Jean-Philippe Lang
Issue list now supports bulk edit/move/delete (#563, #607). For now, issues from different projects can not be bulk edited/moved/deleted at once....
r1116 <% end -%>