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

20 lines
384 B
Plaintext
Raw Normal View History

- title "Meine Aufgaben"
= render 'nav'
2012-10-08 21:52:03 +02:00
- unless @unaccepted_tasks.empty?
%section
%h3 Offene Aufgaben
= render 'list', tasks: @unaccepted_tasks
%section
%h3 Anstehende Aufgaben
- unless @accepted_tasks.empty?
= render 'list', tasks: @accepted_tasks
- else
Nichts zu tun?
= link_to "Hier", tasks_path
gibt es bestimmt Arbeit.
%br/
= link_to_top
2009-01-06 11:49:19 +01:00