Sha256: 626f40645a938affa90600d3ba08aefa7148c977757d3b4356aa006c33ee8714

Contents?: true

Size: 1.08 KB

Versions: 4

Compression:

Stored size: 1.08 KB

Contents

= form_tag(account_roles_update_path(@account, :user_id => @account_user.user)) do

  %h3
    Permissões

  %table
    %tbody
      %tr
        %td
          = @account_user.user.email

  %div{ :style => "margin-bottom:20px" }
    - if current_user.is?(:owner, @account)
      - APP_ROLES['roles'].each do |role|
        %div{ :style => "margin-bottom: 5px" }
          = check_box_tag "roles[]", role, @account_user.is?(role), :id => "#{role}_checkbox"
          = label_tag "#{role}_checkbox", I18n.t("iugu.#{role}")

    - elsif current_user.is?(:admin, @account)
      - APP_ROLES['roles'].each do |role|
        - unless role == APP_ROLES['owner_role'] || role == APP_ROLES['admin_role']
          %div{ :style => "margin-bottom: 5px" }
            = check_box_tag "roles[]", role, @account_user.is?(role), :id => "#{role}_checkbox"
            = label_tag "#{role}_checkbox", I18n.t("iugu.#{role}")
    
  %div
    = submit_tag I18n.t("iugu.save"), :class => "button full-width"

= link_to I18n.t("iugu.back"), account_users_index_path(account_id: params[:id]), class: "button no-bottom-margin"

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
iugusdk-1.0.0.alpha.25 app/views/iugu/account_roles/edit.html.haml
iugusdk-1.0.0.alpha.24 app/views/iugu/account_roles/edit.html.haml
iugusdk-1.0.0.alpha.23 app/views/iugu/account_roles/edit.html.haml
iugusdk-1.0.0.alpha.22 app/views/iugu/account_roles/edit.html.haml