Commit 33274b22 authored by Dennis Tang's avatar Dennis Tang

Move EE differences for `app/views/admin/users/show.html.haml`

parent e232bdf3
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
= image_tag avatar_icon_for_user(user), class: 'avatar s16 d-xs-flex d-md-none mr-1 prepend-top-2', alt: _('Avatar for %{name}') % { name: sanitize_name(user.name) } = image_tag avatar_icon_for_user(user), class: 'avatar s16 d-xs-flex d-md-none mr-1 prepend-top-2', alt: _('Avatar for %{name}') % { name: sanitize_name(user.name) }
= link_to user.name, admin_user_path(user), class: 'text-plain js-user-link', data: { user_id: user.id } = link_to user.name, admin_user_path(user), class: 'text-plain js-user-link', data: { user_id: user.id }
= render_if_exists 'admin/users/user_detail_note', user: user = render_if_exists 'admin/users/user_listing_note', user: user
- user_badges_in_admin_section(user).each do |badge| - user_badges_in_admin_section(user).each do |badge|
- css_badge = "badge badge-#{badge[:variant]}" if badge[:variant].present? - css_badge = "badge badge-#{badge[:variant]}" if badge[:variant].present?
......
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
- else - else
Disabled Disabled
= render 'admin/namespace_plan_info', namespace: @user.namespace = render_if_exists 'admin/namespace_plan_info', namespace: @user.namespace
%li %li
%span.light External User: %span.light External User:
...@@ -136,7 +136,7 @@ ...@@ -136,7 +136,7 @@
%strong %strong
= link_to @user.created_by.name, [:admin, @user.created_by] = link_to @user.created_by.name, [:admin, @user.created_by]
= render partial: "namespaces/shared_runner_status", locals: { namespace: @user.namespace } = render_if_exists 'namespaces/shared_runner_status', namespace: @user.namespace
.col-md-6 .col-md-6
- unless @user == current_user - unless @user == current_user
...@@ -150,13 +150,9 @@ ...@@ -150,13 +150,9 @@
%p This user has an unconfirmed email address#{email}. You may force a confirmation. %p This user has an unconfirmed email address#{email}. You may force a confirmation.
%br %br
= link_to 'Confirm user', confirm_admin_user_path(@user), method: :put, class: "btn btn-info", data: { confirm: 'Are you sure?' } = link_to 'Confirm user', confirm_admin_user_path(@user), method: :put, class: "btn btn-info", data: { confirm: 'Are you sure?' }
- if @user.note.present?
- text = @user.note = render_if_exists 'admin/users/user_detail_note'
.card.border-info
.card-header.bg-info.text-white
Admin Note
.card-body
%p= text
- if @user.blocked? - if @user.blocked?
.card.border-info .card.border-info
.card-header.bg-info.text-white .card-header.bg-info.text-white
......
- if user.note.present? - if @user.note.present?
%span.has-tooltip.user-note{ title: user.note } - text = @user.note
= icon("sticky-note-o cgrey") .card.border-info
.card-header.bg-info.text-white
Admin Note
.card-body
%p= text
- if user.note.present?
%span.has-tooltip.user-note{ title: user.note }
= icon("sticky-note-o cgrey")
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment