##// END OF EJS Templates
replace tabs to spaces at app/views/settings/_projects.html.erb...
replace tabs to spaces at app/views/settings/_projects.html.erb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7331 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7114:162686a990bb
r7211:6c5325e69018
Show More
_list.html.erb
37 lines | 1.9 KiB | text/plain | TextLexer
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list.html.erb...
r7114 <% 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>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list.html.erb...
r7114 <%= 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 %>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list.html.erb...
r7114 </tr></thead>
<% previous_group = false %>
<tbody>
<% 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">
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list.html.erb...
r7114 <td colspan="<%= query.columns.size + 2 %>">
<span class="expander" onclick="toggleRowGroup(this); return false;">&nbsp;</span>
<%= group.blank? ? 'None' : column_content(@query.group_by_column, issue) %> <span class="count">(<%= @issue_count_by_group[group] %>)</span>
Jean-Philippe Lang
Adds links on the issue list to collapse/expang all groups (#7236)....
r5054 <%= 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>
<% previous_group = group %>
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>
<td class="id"><%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %></td>
Jean-Philippe Lang
Wrap text custom fields in the issue list (#8064)....
r5212 <% query.columns.each do |column| %><%= content_tag 'td', column_content(column, issue), :class => column.css_classes %><% end %>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list.html.erb...
r7114 </tr>
<% 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 -%>