foodsoft/app/views/admin/workgroups/_form.html.haml
Patrick Gansterer 1315103a7d Add role_invoices
This new role allows users to create invoices without role_finance. Users
can then only modify their own created invoices until somebody with the
role_finance sets the paid_on value.
2016-03-04 16:06:02 +01:00

14 lines
531 B
Text

%p= t('.first_paragraph', url: link_to(t('.here'), new_invite_path(id: @workgroup.id), remote: true)).html_safe
= simple_form_for [:admin, @workgroup] do |f|
- captured = capture do
%h4= t 'admin.access_to'
= f.input :role_suppliers
= f.input :role_article_meta
= f.input :role_orders
= f.input :role_finance
= f.input :role_invoices
= f.input :role_admin
= render 'shared/group_form_fields', :f => f, captured: captured
.form-actions
= f.button :submit
= link_to t('ui.or_cancel'), :back