Move the links (All time entries, Import) from Spent time section of the spent time list sidebar under a dropdown (#31598).

Patch by Marius BALTEANU.


git-svn-id: http://svn.redmine.org/redmine/trunk@18546 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2019-09-27 09:38:33 +00:00
parent bf4a6ccf6d
commit bd46401821
2 changed files with 5 additions and 9 deletions

View File

@@ -1,10 +1 @@
<h3><%= l(:label_spent_time) %></h3>
<ul>
<li><%= link_to l(:label_time_entries_visibility_all), _time_entries_path(@project, nil, :set_filter => 1) %></li>
<% if User.current.allowed_to?(:log_time, @project, :global => true) %>
<li><%= link_to l(:button_import), new_time_entries_import_path %></li>
<% end %>
</ul>
<%= render_sidebar_queries(TimeEntryQuery, @project) %>

View File

@@ -5,6 +5,11 @@
<%= 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?(:log_time, @project, :global => true) %>
<%= link_to l(:button_import), new_time_entries_import_path %>
<% end %>
<% end %>
</div>
<h2><%= @query.new_record? ? l(:label_spent_time) : @query.name %></h2>