diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-12-04 17:44:12 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-12-04 17:44:12 +0000 |
commit | 2cca4938cf6288f7989cf2b8ccfc27c637b25ba1 (patch) | |
tree | 2ecd8066d4ba9b4802d418b02b70821abb688fde /app/views/versions | |
parent | e77046ba4ea8f22ac0a47dedee1073f96c3484ef (diff) | |
download | redmine-2cca4938cf6288f7989cf2b8ccfc27c637b25ba1.tar.gz redmine-2cca4938cf6288f7989cf2b8ccfc27c637b25ba1.zip |
Removed open/closed percentage on the roadmap.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8075 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/versions')
-rw-r--r-- | app/views/versions/_overview.html.erb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/views/versions/_overview.html.erb b/app/views/versions/_overview.html.erb index 4fc610422..882771f86 100644 --- a/app/views/versions/_overview.html.erb +++ b/app/views/versions/_overview.html.erb @@ -17,10 +17,8 @@ <%= 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) %> - (<%= '%0.0f' % (version.closed_issues_count.to_f / version.fixed_issues.count * 100) %>%) -   + — <%= 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) %> - (<%= '%0.0f' % (version.open_issues_count.to_f / version.fixed_issues.count * 100) %>%) </p> <% else %> <p><em><%= l(:label_roadmap_no_issues) %></em></p> |