##// END OF EJS Templates
Fixed an error when downloading gantt png at global level....
Fixed an error when downloading gantt png at global level. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2332 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r874:8509cf80f009
r2330:bf76988ebc3e
Show More
_details.rhtml
47 lines | 2.8 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 %>
<% col_width = 70 / (@statuses.length+3) %>
<table class="list">
<thead><tr>
<th style="width:25%"></th>
<% for status in @statuses %>
Jean-Philippe Lang
Application layout refactored....
r736 <th style="width:<%= col_width %>%"><%= 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") %>">
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 <td><%= link_to row.name, :controller => 'issues', :action => 'index', :project_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>
<% for status in @statuses %>
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, "status_id" => status.id },
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)),
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 :set_filter => 1,
"status_id" => status.id,
"#{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 },
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 :controller => 'issues', :action => 'index', :project_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
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 :controller => 'issues', :action => 'index', :project_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
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 :controller => 'issues', :action => 'index', :project_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
issues reports improvements...
r32 reset_cycle %>