##// END OF EJS Templates
Adds checkboxes toggle links on permissions report....
Adds checkboxes toggle links on permissions report. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1770 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1652:6d3c0dab015f
r1769:6ad989f82887
Show More
_list.rhtml
22 lines | 1.1 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
More appropriate default sort order on sortable columns....
r1107 <%= sort_header_tag("#{Issue.table_name}.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
Added AJAX based context menu on the project issue list that provide shortcuts for editing, re-assigning, changing the status or the priority, moving or deleting an issue....
r859 <tr id="issue-<%= issue.id %>" class="issue hascontextmenu <%= cycle('odd', 'even') %> <%= "status-#{issue.status.position} priority-#{issue.priority.position}" %>">
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 -%>