##// END OF EJS Templates
Traditional Chinese translation updated by ChunChang Lo (#11436)...
Traditional Chinese translation updated by ChunChang Lo (#11436) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10023 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9346:5e57a1a9d947
r9840:ee3478f389b7
Show More
_list.html.erb
37 lines | 1.8 KiB | text/plain | TextLexer
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({}) do -%>
Toshi MARUYAMA
Fix duplicated 'back_url' IDs...
r9130 <%= hidden_field_tag 'back_url', url_for(params), :id => nil %>
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 %>">
Jean-Philippe Lang
Removed useless return false; statement....
r7752 <span class="expander" onclick="toggleRowGroup(this);">&nbsp;</span>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list.html.erb...
r7114 <%= 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>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <td class="id"><%= link_to issue.id, issue_path(issue) %></td>
<%= raw query.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>
<% 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 -%>