2012-10-08 21:52:03 +02:00
|
|
|
- if Task.done.count > 20
|
|
|
|
= items_per_page
|
|
|
|
= pagination_links_remote @tasks
|
|
|
|
|
|
|
|
%table.table.table-striped
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Fälligkeitsdatum
|
|
|
|
%th Betreff
|
|
|
|
%th Verantwortliche Menschen
|
|
|
|
%th
|
|
|
|
%tbody
|
|
|
|
- @tasks.each do |task|
|
|
|
|
%tr
|
|
|
|
%td= task.due_date unless task.due_date.nil?
|
|
|
|
%td= link_to "#{task.name} (#{task.duration}h)", :controller => "tasks", :action => "show", :id => task
|
2012-12-16 19:03:04 +01:00
|
|
|
%td= task_assignments task
|