Index: _list.rhtml =================================================================== --- _list.rhtml (revision 2085) +++ _list.rhtml (working copy) @@ -10,13 +10,19 @@ <% end %> + <% hours=0;%> <% issues.each do |issue| -%> "> <%= check_box_tag("ids[]", issue.id, false, :id => nil) %> <%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %> <% query.columns.each do |column| %><%= content_tag 'td', column_content(column, issue), :class => column.name %><% end %> + <% temp=issue.send("estimated_hours"); %> + <% if(!temp.nil?)%> + <% hours+=temp;%> + <% end -%> <% end -%> +

Total Estimated Hours: <%=hours%>

<% end -%>