##// END OF EJS Templates
not add empty header/footer to notification emails (#13482)...
not add empty header/footer to notification emails (#13482) Contributed by Max Horn. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11721 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11217:9b1ebd6808d2
r11491:19f70c95d1ae
Show More
_list.html.erb
47 lines | 2.0 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">
Toshi MARUYAMA
code layout cleanup app/views/issues/_list.html.erb...
r10263 <thead>
<tr>
<th class="checkbox hide-when-print">
<%= link_to image_tag('toggle_check.png'), {},
:onclick => 'toggleIssuesSelection(this); return false;',
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %>
</th>
Jean-Philippe Lang
Adds an option for displaying the issue description on the issue list (#3447)....
r10721 <% query.inline_columns.each do |column| %>
Toshi MARUYAMA
code layout cleanup app/views/issues/_list.html.erb...
r10263 <%= column_header(column) %>
<% end %>
</tr>
</thead>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list.html.erb...
r7114 <% 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">
Jean-Philippe Lang
Adds an option for displaying the issue description on the issue list (#3447)....
r10721 <td colspan="<%= query.inline_columns.size + 2 %>">
Jean-Philippe Lang
Removed useless return false; statement....
r7752 <span class="expander" onclick="toggleRowGroup(this);">&nbsp;</span>
Jean-Philippe Lang
'None' grouped issue list section should be translated (#12358)....
r10602 <%= group.blank? ? l(:label_none) : column_content(@query.group_by_column, issue) %> <span class="count"><%= @issue_count_by_group[group] %></span>
Toshi MARUYAMA
code layout cleanup app/views/issues/_list.html.erb...
r10263 <%= 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
Adds an option for displaying the issue description on the issue list (#3447)....
r10721 <%= raw query.inline_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>
Jean-Philippe Lang
Adds an option for displaying the issue description on the issue list (#3447)....
r10721 <% @query.block_columns.each do |column|
if (text = column_content(column, issue)) && text.present? -%>
<tr class="<%= current_cycle %>">
Jean-Philippe Lang
Refactor: makes issue id a regular QueryColumn....
r11217 <td colspan="<%= @query.inline_columns.size + 1 %>" class="<%= column.css_classes %>"><%= text %></td>
Jean-Philippe Lang
Adds an option for displaying the issue description on the issue list (#3447)....
r10721 </tr>
<% end -%>
<% end -%>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list.html.erb...
r7114 <% 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 -%>