summaryrefslogtreecommitdiffstats
path: root/app/views/projects/_sidebar.html.erb
blob: 803686ae15c77158f42fc343ddc54ba5a8396336 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<% if User.current.allowed_to?(:view_time_entries, @project) %>
  <h3><%= l(:label_spent_time) %></h3>
  <% if @total_hours.present? %>
    <p><span class="icon icon-time"><%= l_hours(@total_hours) %></span></p>
  <% end %>
  <p>
  <% if User.current.allowed_to?(:log_time, @project) %>
    <%= link_to l(:button_log_time), new_project_time_entry_path(@project) %> |
  <% end %>
  <%= link_to(l(:label_details), project_time_entries_path(@project)) %> |
  <%= link_to(l(:label_report), report_project_time_entries_path(@project)) %>
  </p>
<% end %>
<%= call_hook(:view_projects_show_sidebar_bottom, :project => @project) %>