diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-12-03 08:27:40 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-12-03 08:27:40 +0000 |
commit | adc10e68a915fe1ca601acb9f70ad10285ec36aa (patch) | |
tree | 8a34b17bdaf439fbaee9a300a935cd45a3daff3c | |
parent | e22159a3cb721384de38166e4a014f08ebe08829 (diff) | |
download | redmine-adc10e68a915fe1ca601acb9f70ad10285ec36aa.tar.gz redmine-adc10e68a915fe1ca601acb9f70ad10285ec36aa.zip |
Add link to issue list on version estimated time.
git-svn-id: http://svn.redmine.org/redmine/trunk@16041 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/versions/show.html.erb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/versions/show.html.erb b/app/views/versions/show.html.erb index 638a17af7..82bd572d2 100644 --- a/app/views/versions/show.html.erb +++ b/app/views/versions/show.html.erb @@ -17,7 +17,8 @@ <table> <tr> <th><%= l(:field_estimated_hours) %></th> - <td class="total-hours"><%= html_hours(l_hours(@version.estimated_hours)) %></td> + <td class="total-hours"><%= link_to html_hours(l_hours(@version.estimated_hours)), + project_issues_path(@version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => @version.id, :c => [:tracker, :status, :subject, :estimated_hours], :t => [:estimated_hours]) %></td> </tr> <% if User.current.allowed_to_view_all_time_entries?(@project) %> <tr> |