foodsoft/app/views/tasks/_archive_tasks.html.haml

18 lines
446 B
Plaintext
Raw Normal View History

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= heading_helper Task, :due_date
%th= heading_helper Task, :name
%th= heading_helper Task, :user_list
2012-10-08 21:52:03 +02:00
%th
%tbody
- @tasks.each do |task|
%tr
%td= task.due_date unless task.due_date.nil?
%td= link_to task_title(task), task_path(task)
2013-04-12 00:00:02 +02:00
%td= task_assignments task