##// END OF EJS Templates
'Manage repository' permission requires to be a project member....
'Manage repository' permission requires to be a project member. git-svn-id: http://redmine.rubyforge.org/svn/trunk@807 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r626:b3f3634df3de
r796:26528d10048a
Show More
_simple.rhtml
36 lines | 2.1 KiB | text/html+ruby | RhtmlLexer
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") %>">
Jean-Philippe Lang
Added subprojects issue count on project "Reports" page...
r407 <td><%= link_to row.name, :controller => 'projects', :action => 'list_issues', :id => ((row.is_a?(Project) ? row : @project)),
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 :set_filter => 1,
"#{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 },
Jean-Philippe Lang
Added subprojects issue count on project "Reports" page...
r407 :controller => 'projects', :action => 'list_issues', :id => ((row.is_a?(Project) ? row : @project)),
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 :set_filter => 1,
"#{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 },
Jean-Philippe Lang
Added subprojects issue count on project "Reports" page...
r407 :controller => 'projects', :action => 'list_issues', :id => ((row.is_a?(Project) ? row : @project)),
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 :set_filter => 1,
"#{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 },
Jean-Philippe Lang
Added subprojects issue count on project "Reports" page...
r407 :controller => 'projects', :action => 'list_issues', :id => ((row.is_a?(Project) ? row : @project)),
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 :set_filter => 1,
"#{field_name}" => row.id,
"status_id" => "*" %></td>
</tr>
<% end %>
</tbody>
</table>
<% end
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@31 e93f8b46-1217-0410-a6f0-8f06a7374b81
r29 reset_cycle %>