Sha256: 6efa90b9b963643bd961e8100c220de4c20dd94b1edda034abc88e54f6051547

Contents?: true

Size: 590 Bytes

Versions: 5

Compression:

Stored size: 590 Bytes

Contents

table.table
  tr
    th Username
    - @roles.each do |role|
      th = role.to_s.titleize
    end
  - @users.each do |user|
    tr
      td = user.username
      - @roles.each do |role|
        td
          = form_for user, url: role_user_path(user), method: :put do |f|
              - operation, activation, btn_class = user.has_role?(role) ? \
                %w(revoke active btn-success) : %w(grant inactive btn-danger)
              = hidden_field_tag :operation, operation
              = hidden_field_tag :role, role
              = f.submit activation, class: "btn \#{btn_class}"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
crosstie-0.0.6 lib/crosstie/templates/authorization/index.html.slim
crosstie-0.0.5 lib/crosstie/templates/authorization/index.html.slim
crosstie-0.0.4 lib/crosstie/templates/authorization/index.html.slim
crosstie-0.0.3 lib/crosstie/templates/authorization/index.html.slim
crosstie-0.0.2 lib/crosstie/templates/authorization/index.html.slim