mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
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:
@@ -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) %>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user