diff options
author | Go MAEDA <maeda@farend.jp> | 2019-06-03 00:27:17 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-06-03 00:27:17 +0000 |
commit | 4e9bf7310c0a41a0ac9e16dfe2d3c6396d600c74 (patch) | |
tree | f370b36c074569754bb6270cc73a2814324fb838 /app | |
parent | f1c29cdb8c8b6b9526f25321d606f5bfc374c209 (diff) | |
download | redmine-4e9bf7310c0a41a0ac9e16dfe2d3c6396d600c74.tar.gz redmine-4e9bf7310c0a41a0ac9e16dfe2d3c6396d600c74.zip |
Add a link to project_issues_report from project_issues_report_details (#31493).
Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@18222 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/reports/issue_report_details.html.erb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/views/reports/issue_report_details.html.erb b/app/views/reports/issue_report_details.html.erb index be7259d6b..201ba1b10 100644 --- a/app/views/reports/issue_report_details.html.erb +++ b/app/views/reports/issue_report_details.html.erb @@ -1,7 +1,6 @@ -<h2><%=l(:label_report_plural)%></h2> +<h2><%= link_to l(:label_report_plural), project_issues_report_path(@project) %> ยป</h2> <h3><%=@report_title%></h3> <%= render :partial => 'details', :locals => { :data => @data, :field_name => @field, :rows => @rows } %> <br /> <%= link_to l(:button_back), project_issues_report_path(@project) %> - |