diff options
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/index.html.erb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/views/issues/index.html.erb b/app/views/issues/index.html.erb index d5a77ca51..5efc22205 100644 --- a/app/views/issues/index.html.erb +++ b/app/views/issues/index.html.erb @@ -2,6 +2,9 @@ <% if User.current.allowed_to?(:add_issues, @project, :global => true) && (@project.nil? || Issue.allowed_target_trackers(@project).any?) %> <%= link_to l(:label_issue_new), _new_project_issue_path(@project), :class => 'icon icon-add new-issue' %> <% end %> + <%= link_to_if_authorized l(:label_settings), + {:controller => 'projects', :action => 'settings', :id => @project, :tab => 'issues'}, + :class => 'icon icon-settings' if User.current.allowed_to?(:manage_categories, @project) %> </div> <h2><%= @query.new_record? ? l(:label_issue_plural) : @query.name %></h2> |