Joel Meador

rants and raves

Add Spent Time / Spent Hours Column to Redmine’s Default Issues List

with one comment

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

Written by joelmeador

November 30, 2008 at 9:10 am

Posted in code

Tagged with

One Response

Subscribe to comments with RSS.

  1. 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


Leave a Reply