Browse Source

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
tags/4.1.0
Go MAEDA 4 years ago
parent
commit
bd46401821
2 changed files with 5 additions and 9 deletions
  1. 0
    9
      app/views/timelog/_sidebar.html.erb
  2. 5
    0
      app/views/timelog/index.html.erb

+ 0
- 9
app/views/timelog/_sidebar.html.erb 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) %>

+ 5
- 0
app/views/timelog/index.html.erb 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>

Loading…
Cancel
Save