From: Jean-Philippe Lang Date: Fri, 20 Dec 2019 08:15:48 +0000 (+0000) Subject: Move some links to dropdowns. X-Git-Tag: 4.2.0~1292 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7aa1208dbaa9a7e2f6ea32ea46c8cc9b6813eb90;p=redmine.git Move some links to dropdowns. git-svn-id: http://svn.redmine.org/redmine/trunk@19382 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/issues/index.html.erb b/app/views/issues/index.html.erb index 0e8010467..3377fd681 100644 --- a/app/views/issues/index.html.erb +++ b/app/views/issues/index.html.erb @@ -2,9 +2,6 @@ <% 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) %> <%= actions_dropdown do %> <% if @project %> <%= link_to l(:field_summary), project_issues_report_path(@project) %> @@ -13,6 +10,10 @@ <% if User.current.allowed_to?(:import_issues, @project, :global => true) %> <%= link_to l(:button_import), new_issues_import_path(:project_id => @project) %> <% 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) %> <% end %> diff --git a/app/views/projects/show.html.erb b/app/views/projects/show.html.erb index a3ac9b14f..de99eeabe 100644 --- a/app/views/projects/show.html.erb +++ b/app/views/projects/show.html.erb @@ -1,8 +1,10 @@
+ <%= bookmark_link @project %> + + <%= actions_dropdown do %> <% if User.current.allowed_to?(:add_subprojects, @project) %> <%= link_to l(:label_subproject_new), new_project_path(:parent_id => @project), :class => 'icon icon-add' %> <% end %> - <%= bookmark_link @project %> <% if User.current.allowed_to?(:close_project, @project) %> <% if @project.active? %> <%= link_to l(:button_close), close_project_path(@project), :data => {:confirm => l(:text_are_you_sure)}, :method => :post, :class => 'icon icon-lock' %> @@ -13,7 +15,7 @@ <%= link_to_if_authorized l(:label_settings), {:controller => 'projects', :action => 'settings', :id => @project}, :class => 'icon icon-settings' if User.current.allowed_to?(:edit_project, @project) %> - + <% end %>

<%=l(:label_overview)%>

diff --git a/app/views/repositories/_navigation.html.erb b/app/views/repositories/_navigation.html.erb index 37a2f177c..730cec42f 100644 --- a/app/views/repositories/_navigation.html.erb +++ b/app/views/repositories/_navigation.html.erb @@ -15,9 +15,11 @@ {:action => 'stats', :id => @project, :repository_id => @repository.identifier_param}, :class => 'icon icon-stats' if @repository.supports_all_revisions? %> -<%= link_to_if_authorized l(:label_settings), +<%= actions_dropdown do %> + <%= link_to_if_authorized l(:label_settings), {:controller => 'projects', :action => 'settings', :id => @project, :tab => 'repositories'}, :class => 'icon icon-settings' if User.current.allowed_to?(:manage_repository, @project) %> +<% end %> <%= form_tag({:action => controller.action_name, :id => @project, diff --git a/app/views/timelog/index.html.erb b/app/views/timelog/index.html.erb index 01e6752fe..c34a24409 100644 --- a/app/views/timelog/index.html.erb +++ b/app/views/timelog/index.html.erb @@ -2,13 +2,14 @@ <%= link_to l(:button_log_time), _new_time_entry_path(@project, @query.filtered_issue_id), :class => 'icon icon-time-add' if User.current.allowed_to?(:log_time, @project, :global => true) %> -<%= link_to_if_authorized l(:label_settings), - {:controller => 'projects', :action => 'settings', :id => @project, :tab => 'activities'}, - :class => 'icon icon-settings' if User.current.allowed_to?(:manage_project_activities, @project) %> <%= actions_dropdown do %> <% if User.current.allowed_to?(:import_time_entries, @project, :global => true) %> <%= link_to l(:button_import), new_time_entries_import_path(:project_id => @project) %> <% end %> + + <%= link_to_if_authorized l(:label_settings), + {:controller => 'projects', :action => 'settings', :id => @project, :tab => 'activities'}, + :class => 'icon icon-settings' if User.current.allowed_to?(:manage_project_activities, @project) %> <% end %> diff --git a/app/views/versions/index.html.erb b/app/views/versions/index.html.erb index 02952b209..afe9b463c 100644 --- a/app/views/versions/index.html.erb +++ b/app/views/versions/index.html.erb @@ -1,9 +1,11 @@
<%= link_to(l(:label_version_new), new_project_version_path(@project), :class => 'icon icon-add') if User.current.allowed_to?(:manage_versions, @project) %> + <%= actions_dropdown do %> <%= link_to_if_authorized l(:label_settings), {:controller => 'projects', :action => 'settings', :id => @project, :tab => 'versions'}, :class => 'icon icon-settings' if User.current.allowed_to?(:manage_versions, @project) %> + <% end %>

<%=l(:label_roadmap)%>