##// END OF EJS Templates
Reverting commit r1748. Some environments are not allowing the cached file to...
Reverting commit r1748. Some environments are not allowing the cached file to write to public, causing all JavaScript to fail. Javascripts are now cached into a single file for downloads in production mode. #1186 git-svn-id: http://redmine.rubyforge.org/svn/trunk@1771 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r874:8509cf80f009
r1770:8f3a04ce6906
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
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>
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
git-svn-id: http://redmine.rubyforge.org/svn/trunk@31 e93f8b46-1217-0410-a6f0-8f06a7374b81
r29 reset_cycle %>