Actions
Feature #371
openShow time tracking in the changelog/roadmap
Status:
New
Priority:
Normal
Assignee:
-
Category:
Roadmap
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Description
In the interests of using Redmine for time tracking, it would be really useful to be able to display the time taken
on each issue on the changelog and/or roadmap page, possibly also with a total given for each version.
Related issues
Updated by Damien McKenna over 17 years ago
Change app/views/projects/changelog.rhtml line 32:
<li><%= link_to_issue(issue) >: <=h
issue.subject >< if
issue.spent_hours > 0 then > (<= l(:label_f_hour_plural,
issue.spent_hours) %
)<% end %></li>
Updated by Mischa The Evil almost 16 years ago
Damien McKenna wrote:
Change app/views/projects/changelog.rhtml line 32:
Wrapped in code-tags, the modified line 22 (Redmine 0.8.0-RC1) looks like:
<li><%= link_to_issue(issue) %>: <%=h issue.subject %><% if issue.spent_hours > 0 %> (<%= l(:label_f_hour_plural, issue.spent_hours) %>)<% end %></li>
Updated by Mischa The Evil almost 15 years ago
- Category set to Roadmap
I've added the following related issues:
- #1671 (nice but outdated patch which adds detailed timelog info on the roadmap page and which adds some new selectors in the roadmap grouping component)
- #2587 (feature request for something that was included in the previous mentioned patch #1671)
- #3245 (a patch which changes the Roadmap view to also show issue's estimated time and spent time, similar to Goyello's Roadmap Upgrade plugin (http://github.com/GOYELLO/Redmine_roadmap_upgrade))
Actions