Initial commit of foodsoft 2
This commit is contained in:
commit
5b9a7e05df
657 changed files with 70444 additions and 0 deletions
21
app/views/tasks/index.haml
Normal file
21
app/views/tasks/index.haml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
- title _('Arrange tasks')
|
||||
= render :partial => "nav"
|
||||
|
||||
- unless @non_group_tasks.empty?
|
||||
.left_column{:style => "width:75%"}
|
||||
- @tasks = @non_group_tasks
|
||||
.box_title
|
||||
%h2=_ 'Tasks for all'
|
||||
.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
|
||||
Loading…
Add table
Add a link
Reference in a new issue