cixiren 发表于 2018-9-19 11:09:13

gitlab提示“Your account is locked”

= link_to 'Unblock', unblock_admin_user_path(user), method: :put, class: "btn btn-xs btn-success"  
               - else
  
                   = link_to 'Block', block_admin_user_path(user), data: {confirm: 'USER WILL BE BLOCKED! Are you sure?'}, method: :put, class: "btn btn-xs btn-warning"
  
+                - if user.access_locked?
  
+                  = link_to 'Unlock', unlock_admin_user_path(user), method: :put, class: "btn btn-xs btn-success", data: { confirm: 'Are you sure?' }
  
               - if user.can_be_removed?
  
                   = link_to 'Destroy', [:admin, user], data: { confirm: "USER #{user.name} WILL BE REMOVED! All tickets linked to this user will also be removed! Maybe block the user instead? Are you sure?" }, method: :delete, class: "btn btn-xs btn-remove"
  
   = paginate @users, theme: "gitlab"


页: [1]
查看完整版本: gitlab提示“Your account is locked”