Files
openfoodnetwork/app/views/admin/enterprise_roles/_form.html.haml
2017-07-19 09:45:11 +10:00

10 lines
450 B
Plaintext

%tr
%td
%select{name: "enterprise_role_user_id", "ng-model" => "user_id", "ng-options" => "u.id as u.email for u in Users.users"}
%td= t('.manages')
%td
%select{name: "enterprise_role_enterprise_id", "ng-model" => "enterprise_id", "ng-options" => "e.id as e.name for e in Enterprises.all_enterprises"}
%td.actions
%input{type: "button", value: t(:create), "ng-click" => "create()"}
.errors {{ EnterpriseRoles.create_errors }}