foodsoft/app/views/tasks/index.haml

21 lines
549 B
Plaintext
Raw Normal View History

- title "Aufgabenübersicht"
2009-01-06 11:49:19 +01:00
= render :partial => "nav"
- unless @non_group_tasks.empty?
.left_column{:style => "width:75%"}
- @tasks = @non_group_tasks
.box_title
%h2 Aufgaben für alle!
2009-01-06 11:49:19 +01:00
.column_content
= render :partial => "list"
- for @group in @groups
- @tasks = @group.open_tasks
- unless @tasks.empty?
.left_column{:style => "width:75%"}
.box_title
%h2= link_to @group.name, :action => 'workgroup', :id => @group
.column_content
= render :partial => "list"
= link_to_top