Add Spent Time / Spent Hours Column to Redmine’s Default Issues List
Follow these instructions to get the spent time field to appear in the default list of issues in redmine.
1. To lang/en.yml, add a line at the end of the ‘field_x’ lines (line 182-ish):
field_spent_hours: Spent time
2. To app/models/query.rb (somewhere around line 108-110 depending on where you want it to appear), add:
QueryColumn.new(:spent_hours),
Now you have a non-sorting column in your default view.
Completed in Redmine 7.0.3
I’ve added some code to your stackoverflow.com question which will do this without modifying the Redmine core.
http://stackoverflow.com/questions/321403/redmine-add-spent-time-field-to-issues-display
Eric Davis
January 8, 2009 at 6:06 am