3238b0bc9f
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
26 lines
938 B
Text
26 lines
938 B
Text
%h3.page-title
|
|
= @user.name
|
|
- if @user.blocked?
|
|
%span.cred (Blocked)
|
|
- if @user.admin
|
|
%span.cred (Admin)
|
|
|
|
.pull-right
|
|
- unless @user == current_user || @user.blocked?
|
|
= link_to 'Impersonate', impersonate_admin_user_path(@user), method: :post, class: "btn btn-nr btn-grouped btn-info"
|
|
= link_to edit_admin_user_path(@user), class: "btn btn-nr btn-grouped" do
|
|
%i.fa.fa-pencil-square-o
|
|
Edit
|
|
%hr
|
|
%ul.nav-links
|
|
= nav_link(path: 'users#show') do
|
|
= link_to "Account", admin_user_path(@user)
|
|
= nav_link(path: 'users#groups') do
|
|
= link_to "Groups", groups_admin_user_path(@user)
|
|
= nav_link(path: 'users#projects') do
|
|
= link_to "Projects", projects_admin_user_path(@user)
|
|
= nav_link(path: 'users#keys') do
|
|
= link_to "SSH keys", keys_admin_user_path(@user)
|
|
= nav_link(controller: :identities) do
|
|
= link_to "Identities", admin_user_identities_path(@user)
|
|
.append-bottom-default
|