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

21 lines
412 B
Plaintext
Raw Normal View History

- title "Meine Aufgaben"
2012-10-08 21:52:03 +02:00
- content_for :sidebar do
= render 'nav'
- 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