##// END OF EJS Templates
remove trailing white-spaces from app/views/mailer/wiki_content_added.text.plain.rhtml...
remove trailing white-spaces from app/views/mailer/wiki_content_added.text.plain.rhtml git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7314 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6482:e7848bc7e63e
r7194:be7b00fc32d4
Show More
_simple.html.erb
41 lines | 2.4 KiB | text/plain | TextLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% if @statuses.empty? or rows.empty? %>
<p><i><%=l(:label_no_data)%></i></p>
<% else %>
<table class="list">
<thead><tr>
<th style="width:25%"></th>
<th align="center" style="width:25%"><%=l(:label_open_issues_plural)%></th>
<th align="center" style="width:25%"><%=l(:label_closed_issues_plural)%></th>
<th align="center" style="width:25%"><%=l(:label_total)%></th>
</tr></thead>
<tbody>
<% for row in rows %>
<tr class="<%= cycle("odd", "even") %>">
Toshi MARUYAMA
remove trailing white-spaces from app/views/reports/_simple.rhtml....
r6223 <td><%= link_to h(row.name), :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
:set_filter => 1,
Jean-Philippe Lang
Fixed: issue summary counts should link to the issue list without subprojects (#4525)....
r3169 :subproject_id => '!*',
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 "#{field_name}" => row.id %></td>
Jean-Philippe Lang
On the issue report page, 0 issue counts are now displayed as dashes....
r626 <td align="center"><%= aggregate_link data, { field_name => row.id, "closed" => 0 },
Toshi MARUYAMA
remove trailing white-spaces from app/views/reports/_simple.rhtml....
r6223 :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
:set_filter => 1,
Jean-Philippe Lang
Fixed: issue summary counts should link to the issue list without subprojects (#4525)....
r3169 :subproject_id => '!*',
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 "#{field_name}" => row.id,
"status_id" => "o" %></td>
Jean-Philippe Lang
On the issue report page, 0 issue counts are now displayed as dashes....
r626 <td align="center"><%= aggregate_link data, { field_name => row.id, "closed" => 1 },
Toshi MARUYAMA
remove trailing white-spaces from app/views/reports/_simple.rhtml....
r6223 :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
:set_filter => 1,
Jean-Philippe Lang
Fixed: issue summary counts should link to the issue list without subprojects (#4525)....
r3169 :subproject_id => '!*',
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 "#{field_name}" => row.id,
"status_id" => "c" %></td>
Jean-Philippe Lang
On the issue report page, 0 issue counts are now displayed as dashes....
r626 <td align="center"><%= aggregate_link data, { field_name => row.id },
Toshi MARUYAMA
remove trailing white-spaces from app/views/reports/_simple.rhtml....
r6223 :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
:set_filter => 1,
Jean-Philippe Lang
Fixed: issue summary counts should link to the issue list without subprojects (#4525)....
r3169 :subproject_id => '!*',
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 "#{field_name}" => row.id,
Toshi MARUYAMA
remove trailing white-spaces from app/views/reports/_simple.rhtml....
r6223 "status_id" => "*" %></td>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </tr>
<% end %>
</tbody>
</table>
<% end
Toshi MARUYAMA
remove trailing white-spaces from app/views/reports/_simple.rhtml....
r6223 reset_cycle %>