mirror of
https://github.com/redmine/redmine.git
synced 2026-05-06 05:37:25 +02:00
Show estimated time on the overview page as well as spent time (#30464).
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@17838 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -83,10 +83,15 @@
|
||||
|
||||
<% if User.current.allowed_to?(:view_time_entries, @project) %>
|
||||
<div class="spent_time box">
|
||||
<h3 class="icon icon-time"><%= l(:label_spent_time) %></h3>
|
||||
<% if @total_hours.present? %>
|
||||
<p><%= l_hours(@total_hours) %></p>
|
||||
<% end %>
|
||||
<h3 class="icon icon-time"><%= l(:label_time_tracking) %></h3>
|
||||
<ul>
|
||||
<% if @total_estimated_hours.present? %>
|
||||
<li><%= l(:field_estimated_hours) %>: <%= l_hours(@total_estimated_hours) %>
|
||||
<% end %>
|
||||
<% if @total_hours.present? %>
|
||||
<li><%= l(:label_spent_time) %>: <%= l_hours(@total_hours) %>
|
||||
<% end %>
|
||||
</ul>
|
||||
<p>
|
||||
<% if User.current.allowed_to?(:log_time, @project) %>
|
||||
<%= link_to l(:button_log_time), new_project_time_entry_path(@project) %> |
|
||||
|
||||
Reference in New Issue
Block a user