##// END OF EJS Templates
Merged r2553 from trunk....
Merged r2553 from trunk. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/0.8-stable@2557 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2170:733987fbb6e4
r2489:b366375e7ee1
Show More
_list.rhtml
22 lines | 1.0 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 -%>
<table class="list issues">
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 <thead><tr>
Jean-Philippe Lang
Javascript fix (#1636)....
r1652 <th><%= 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
Merged r2168 to r2171 from trunk....
r2170 <%= 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>
<tbody>
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 <% issues.each do |issue| -%>
Jean-Philippe Lang
Merged r2109, r2118, r2130, r2131, r2134, r2135, r2136 and r2139 to r2145 from trunk....
r2144 <tr id="issue-<%= issue.id %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= css_issue_classes(issue) %>">
Jean-Philippe Lang
Display links to Atom feeds (closes #496, #750)....
r1171 <td class="checkbox"><%= check_box_tag("ids[]", issue.id, false, :id => nil) %></td>
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 <td><%= 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
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 -%>