Initial commit of foodsoft 2
This commit is contained in:
commit
5b9a7e05df
657 changed files with 70444 additions and 0 deletions
18
app/views/tasks/archive.haml
Normal file
18
app/views/tasks/archive.haml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
- title _('Task archive')
|
||||
= render :partial => "nav"
|
||||
|
||||
%table{:style => "width: 76%"}
|
||||
%tr
|
||||
%th=_ 'Due date'
|
||||
%th=_ 'Subject'
|
||||
%th=_ 'Responsible people'
|
||||
%th
|
||||
- for task in @tasks
|
||||
%tr{:class => cycle('even','odd')}
|
||||
%td= task.due_date unless task.due_date.nil?
|
||||
%td= link_to task.name, :controller => "tasks", :action => "show", :id => task
|
||||
%td
|
||||
- unless task.users.empty?
|
||||
= task.users.map(&:nick).join(", ")
|
||||
%p
|
||||
= link_to_top
|
||||
Loading…
Add table
Add a link
Reference in a new issue