Sha256: 66da7a2baebb3664d244aa9cbff93b784e2afd503790ff8888a7530a2ace22e9
Contents?: true
Size: 1.14 KB
Versions: 14
Compression:
Stored size: 1.14 KB
Contents
<div class="mainblock"> <div class="btitle"> <%=image_link_to 'arrow_up.png', l(:backlogs), :action => :list %> <h4><%=l :tasks%></h4> </div> <table> <%= render :partial => '/tasks/backlog_header', :locals => {:backlog => @backlog, :track_times => tasks.find {|t|t.period && t.period.active?}} %> <% i = 0 %> <% current_period = nil %> <% for @task in tasks %> <% if @task.period != current_period %> <%= render :partial => '/tasks/period_header', :locals => {:period => @task.period} %> <%= render :partial => '/tasks/fields_header', :locals => {:backlog => @backlog, :active => true, :track_times => tasks.find {|t|t.period && t.period.active?}} %> <% current_period = @task.period %> <% end %> <%= render :partial => '/tasks/task/', :locals => {:task => @task, :i => i += 1, :active => true, :highlight_task => false, :update => :maincontent} %> <% end %> </table> </div> <div class="mainblock"> <div class="btitle"> <h4><%=l(:completed_tasks) %></h4> </div> <%=render :partial => '/tasks/completed', :locals => {:i => 1} %> </div>
Version data entries
14 entries across 14 versions & 1 rubygems