##// END OF EJS Templates
scm: git: reduce saving heads times in fetching revisions (#8857, #9472)...
scm: git: reduce saving heads times in fetching revisions (#8857, #9472) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9143 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6484:05d3be31135c
r9023:bcba955456c7
Show More
_details.html.erb
53 lines | 3.2 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 %>
<% col_width = 70 / (@statuses.length+3) %>
<table class="list">
<thead><tr>
<th style="width:25%"></th>
<% for status in @statuses %>
Jean-Philippe Lang
Additional escaping....
r6207 <th style="width:<%= col_width %>%"><%=h status.name %></th>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
<th align="center" style="width:<%= col_width %>%"><strong><%=l(:label_open_issues_plural)%></strong></th>
<th align="center" style="width:<%= col_width %>%"><strong><%=l(:label_closed_issues_plural)%></strong></th>
<th align="center" style="width:<%= col_width %>%"><strong><%=l(:label_total)%></strong></th>
</tr></thead>
<tbody>
<% for row in rows %>
<tr class="<%= cycle("odd", "even") %>">
Toshi MARUYAMA
remove trailing white-spaces from app/views/reports/_details.rhtml....
r6222 <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>
<% for status in @statuses %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/reports/_details.rhtml....
r6222 <td align="center"><%= aggregate_link data, { field_name => row.id, "status_id" => status.id },
: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 => '!*',
Toshi MARUYAMA
remove trailing white-spaces from app/views/reports/_details.rhtml....
r6222 "status_id" => status.id,
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 "#{field_name}" => row.id %></td>
<% end %>
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/_details.rhtml....
r6222 :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/_details.rhtml....
r6222 :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/_details.rhtml....
r6222 :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/_details.rhtml....
r6222 "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/_details.rhtml....
r6222 reset_cycle %>