summaryrefslogtreecommitdiffstats
path: root/app/views/versions
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-01-10 18:05:49 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-01-10 18:05:49 +0000
commit9daa667d0acb5149562348d1867af901545e6fd2 (patch)
treef3585a8ec21eb4e8f44fa6ec1000a8e86c103a78 /app/views/versions
parent8eef72aa1a443a8cdc9d4c610e68fe408d5a1fcc (diff)
downloadredmine-9daa667d0acb5149562348d1867af901545e6fd2.tar.gz
redmine-9daa667d0acb5149562348d1867af901545e6fd2.zip
Adds total number of issues for each version on the roadmap.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8629 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/versions')
-rw-r--r--app/views/versions/_overview.html.erb8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/views/versions/_overview.html.erb b/app/views/versions/_overview.html.erb
index f6716a64f..91fb31818 100644
--- a/app/views/versions/_overview.html.erb
+++ b/app/views/versions/_overview.html.erb
@@ -18,10 +18,12 @@
<% if version.fixed_issues.count > 0 %>
<%= progress_bar([version.closed_pourcent, version.completed_pourcent], :width => '40em', :legend => ('%0.0f%' % version.completed_pourcent)) %>
<p class="progress-info">
- <%= link_to_if(version.closed_issues_count > 0, l(:label_x_closed_issues_abbr, :count => version.closed_issues_count), :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => 'c', :fixed_version_id => version, :set_filter => 1) %>
+ <%= link_to l(:label_x_issues, :count => version.fixed_issues.count), :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => '*', :fixed_version_id => version, :set_filter => 1 %>
+ &nbsp;
+ (<%= link_to_if(version.closed_issues_count > 0, l(:label_x_closed_issues_abbr, :count => version.closed_issues_count), :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => 'c', :fixed_version_id => version, :set_filter => 1) %>
&#8212;
- <%= link_to_if(version.open_issues_count > 0, l(:label_x_open_issues_abbr, :count => version.open_issues_count), :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => 'o', :fixed_version_id => version, :set_filter => 1) %>
+ <%= link_to_if(version.open_issues_count > 0, l(:label_x_open_issues_abbr, :count => version.open_issues_count), :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => 'o', :fixed_version_id => version, :set_filter => 1) %>)
</p>
<% else %>
- <p><em><%= l(:label_roadmap_no_issues) %></em></p>
+ <p class="progress-info"><%= l(:label_roadmap_no_issues) %></p>
<% end %>