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

17 lines
401 B
Plaintext

- title t('.title')
= render 'nav'
- unless @unaccepted_tasks.empty?
%section
%h3= t '.title_open'
= render 'shared/task_list', tasks: @unaccepted_tasks
%section
%h3= t '.title_accepted'
- unless @accepted_tasks.empty?
= render 'shared/task_list', tasks: @accepted_tasks
- else
= t('.more', tasks_link: link_to(t('.tasks_link'), tasks_path)).html_safe
%br/
= link_to_top