##// END OF EJS Templates
Refactor: move method to model with compatibility wrapper...
Refactor: move method to model with compatibility wrapper git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4282 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3942:4776a5a42716
r4168:0ca74df60403
Show More
_list.rhtml
36 lines | 1.7 KiB | text/html+ruby | RhtmlLexer
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 <% form_tag({}) do -%>
Jean-Philippe Lang
Redirect to the current page when using context menu on the issue list (#4184)....
r2913 <%= hidden_field_tag 'back_url', url_for(params) %>
Jean-Philippe Lang
Removes overflow:auto on #content which broke the fix in r2118 (#4724)....
r3262 <div class="autoscroll">
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 <table class="list issues">
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 <thead><tr>
Jean-Baptiste Barth
Hide checkboxes in issues list when printing...
r3942 <th class="checkbox hide-when-print"><%= link_to image_tag('toggle_check.png'), {}, :onclick => 'toggleIssuesSelection(Element.up(this, "form")); return false;',
Jean-Philippe Lang
Change the tick image and replace the issue selection pencil with a small tick....
r1261 :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %>
Jean-Philippe Lang
Added 'Bulk edit' functionality....
r806 </th>
Jean-Philippe Lang
Validates sort_key and sort_order params (#2378)....
r2169 <%= sort_header_tag('id', :caption => '#', :default_order => 'desc') %>
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 <% query.columns.each do |column| %>
<%= column_header(column) %>
<% end %>
</tr></thead>
Jean-Philippe Lang
Allow issue grouping by custom field (#2679)....
r2957 <% previous_group = false %>
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 <tbody>
Jean-Philippe Lang
Issue list improvements for subtasking (#5196):...
r3504 <% issue_list(issues) do |issue, level| -%>
Jean-Philippe Lang
Fixed: "None" category issue count is empty while grouping by category (#4308)....
r2998 <% if @query.grouped? && (group = @query.group_by_column.value(issue)) != previous_group %>
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
Ticket grouping (#2679)....
r2604 <td colspan="<%= query.columns.size + 2 %>">
Jean-Philippe Lang
Adds group folding on issue list (#2679)....
r2615 <span class="expander" onclick="toggleRowGroup(this); return false;">&nbsp;</span>
Jean-Philippe Lang
Fixed: "None" category issue count is empty while grouping by category (#4308)....
r2998 <%= group.blank? ? 'None' : column_content(@query.group_by_column, issue) %> <span class="count">(<%= @issue_count_by_group[group] %>)</span>
Jean-Philippe Lang
Ticket grouping (#2679)....
r2604 </td>
</tr>
Jean-Philippe Lang
Allow issue grouping by custom field (#2679)....
r2957 <% previous_group = group %>
Jean-Philippe Lang
Ticket grouping (#2679)....
r2604 <% end %>
Jean-Philippe Lang
Issue list improvements for subtasking (#5196):...
r3504 <tr id="issue-<%= issue.id %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= issue.css_classes %> <%= level > 0 ? "idnt idnt-#{level}" : nil %>">
Jean-Baptiste Barth
Hide checkboxes in issues list when printing...
r3942 <td class="checkbox hide-when-print"><%= check_box_tag("ids[]", issue.id, false, :id => nil) %></td>
Jean-Philippe Lang
Adds a css class to issue id tds (#5204)....
r3511 <td class="id"><%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %></td>
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 <% query.columns.each do |column| %><%= content_tag 'td', column_content(column, issue), :class => column.name %><% end %>
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 </tr>
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 -%>
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 </tbody>
</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 -%>