2009-02-06 20:51:14 +01:00
|
|
|
- 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
|
2009-02-06 20:51:14 +01:00
|
|
|
%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
|