diff options
author | Go MAEDA <maeda@farend.jp> | 2019-06-02 05:53:19 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-06-02 05:53:19 +0000 |
commit | 82ba14cfbac946f2f6b201e4cd4074493826f246 (patch) | |
tree | aecd2c3eb24ebbde545354c5cb98018581b1eada /app | |
parent | 3dc836a945b405c5fed85cf91dc6f994883d47b0 (diff) | |
download | redmine-82ba14cfbac946f2f6b201e4cd4074493826f246.tar.gz redmine-82ba14cfbac946f2f6b201e4cd4074493826f246.zip |
Add an icon linked to trackers detail report on the project overview page (#31465).
Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@18213 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/projects/show.html.erb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/app/views/projects/show.html.erb b/app/views/projects/show.html.erb index 06eca9970..c46ec9cab 100644 --- a/app/views/projects/show.html.erb +++ b/app/views/projects/show.html.erb @@ -38,7 +38,13 @@ <% if User.current.allowed_to?(:view_issues, @project) %> <div class="issues box"> - <h3 class="icon icon-issue"><%=l(:label_issue_tracking)%></h3> + <h3 class="icon icon-issue"> + <%=l(:label_issue_tracking)%> + <%= link_to l(:label_details), + project_issues_report_details_path(@project, :detail => 'tracker'), + :class => 'icon-only icon-zoom-in', + :title => l(:label_details) %> + </h3> <% if @trackers.present? %> <table class="list issue-report"> <thead> |