Project

General

Profile

Actions

Patch #3245

open

Roadmap - show Estimated Time and Spent Time

Added by Anonymous almost 15 years ago. Updated over 6 years ago.

Status:
New
Priority:
Normal
Assignee:
-
Category:
Roadmap
Target version:
-
Start date:
2009-04-27
Due date:
% Done:

0%

Estimated time:

Description

I have edited the versions/show.rhtml page, so that it shows the Estimated Time and the Spent Time for each ticket in the Version. This diff is done on the Trunk.

I would appreciate, if this would be a standard feature.


Files

show.patch (1009 Bytes) show.patch Anonymous, 2009-04-27 13:34

Related issues

Related to Redmine - Feature #371: Show time tracking in the changelog/roadmapNew

Actions
Actions #1

Updated by Hans Kazan almost 15 years ago

Markus May wrote:

I would appreciate, if this would be a standard feature.

I like this feature very much, a +1 for including this one into the main development branch if possible.

Actions #2

Updated by Adam Piotr Żochowski almost 15 years ago

I would recommend one minor change. That is, do not display if there is nothing to display.

Often I do not have hours specified, so now I see a lot of ( 0 / 0 ). Instead of that, it would be best to skip it altogether.

something along the lines of having additional if statement, that checks if there is anything to display, or just zeroes:

...<% if (issue.estimated_hours != nil && issue.estimated_hours > 0) || ( issue.spent_hours > 0 ) %>
   ( 
   <% if (issue.estimated_hours != nil && issue.estimated_hours > 0)%>
      <%= issue.estimated_hours %>
   <% else %>
      0
   <% end %> 
   / 
   <% if issue.spent_hours > 0 %>
      <%= issue.spent_hours %>
   <% else %>
      0
   <% end %>)
<%end%></li>

Kind regards

Actions #3

Updated by Jamie McClelland almost 15 years ago

This is a great patch - thanks for the contribution.

Is there anyway to get it to work for the roadmap? When I apply the patch, I see the estimated/actual hours by clicking on a given version link (which shows one link by itself), but not when showing all the versions together on the roadmap page.

jamie

Actions #4

Updated by Anonymous almost 15 years ago

The data for the Amount of time is available on the Roadmap Detail Page anyway, and therefor I put the data only there.

Actions #5

Updated by Alexander Lyzhenkov over 6 years ago

+1

Actions #6

Updated by Go MAEDA over 6 years ago

  • Category set to Roadmap
Actions

Also available in: Atom PDF