Sha256: fcc4b621945af7c5cc6cd9f90986e984d46418fb8ed6004ca275c10e3c7428d6
Contents?: true
Size: 1.41 KB
Versions: 22
Compression:
Stored size: 1.41 KB
Contents
<% @page_title = "#{l(:work_account)} #{l(:work_account)}" %> <div id="spotlight"> <%=render :partial => 'title'%> <table> <% for backlog in @backlog_totals.keys %> <tr> <th> <%=backlog ? backlog.name : l(:no_backlog) %> </th> <th> <%=@backlog_totals[backlog] %> </th> </tr> <% if backlog %> <% for task, hours in @task_totals_per_backlog[backlog] %> <tr> <td> <% if task %> <%=link_to task.description, :controller => 'tasks', :action => :edit, :id => task.id %> <% end %> </td> <td align="right" valign="top"> <%='%.2f' % hours %> </td> </tr> <% end %> <% else %> <% for work in @works_without_backlog %> <tr> <td> <%=work.description %> </td> <td align="right" valign="top"> <%='%.2f' % work.hours %> </td> </tr> <% end %> <% end %> <% end %> <tr> <th> Total hours </th> <th> <%=@total_hours %> </th> </tr> </table> <%=detour_to l(:edit), :action => 'edit', :id => @work_account %>|<%=back_or_link_to l(:back), :action => 'list' %> </div>
Version data entries
22 entries across 22 versions & 1 rubygems