##// 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:

r15867:9814dcf231b5
r15868:8d713ae6ca64
Show More
_list.html.erb
44 lines | 2.0 KiB | text/plain | TextLexer
Jean-Philippe Lang
Don't use a global variable for storing context menu URL....
r15554 <%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do -%>
Jean-Philippe Lang
Don't generate back url with params....
r15247 <%= hidden_field_tag 'back_url', url_for(:params => request.query_parameters), :id => nil %>
Jean-Philippe Lang
Removes overflow:auto on #content which broke the fix in r2118 (#4724)....
r3262 <div class="autoscroll">
Jean-Philippe Lang
Use css pseudo-classes instead of cycle("odd", "even") (#15361)....
r15867 <table class="list issues odd-even <%= 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
Reverts r16051 and r16050 for now (#15361)....
r15670 <% reset_cycle %>
Jean-Philippe Lang
Adds group folding on issue list (#2679)....
r2615 <tr class="group open">
Jean-Philippe Lang
Fixed colspan value (#22932)....
r15070 <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 %>
Jean-Philippe Lang
Reverts r16051 and r16050 for now (#15361)....
r15670 <tr id="issue-<%= issue.id %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= issue.css_classes %> <%= level > 0 ? "idnt idnt-#{level}" : nil %>">
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list.html.erb...
r7114 <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 -%>