diff options
author | Josh Frye <joshfng@gmail.com> | 2016-01-12 12:36:28 -0500 |
---|---|---|
committer | Josh Frye <joshfng@gmail.com> | 2016-01-16 10:47:12 -0500 |
commit | c70ed7f2cdc0fbecea739a08332529b71325938c (patch) | |
tree | dd50fff1b8746fedaea49aa3765ee5a19318d64b /app/views/users/show.html.haml | |
parent | 5cd2f77769d968d10cc8e4371e88ff8be9f28c8c (diff) | |
download | gitlab-ce-c70ed7f2cdc0fbecea739a08332529b71325938c.tar.gz |
Autofill abuse message text with user url. Closes #2838
Diffstat (limited to 'app/views/users/show.html.haml')
-rw-r--r-- | app/views/users/show.html.haml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app/views/users/show.html.haml b/app/views/users/show.html.haml index 849304ee2b6..7125b01c3ff 100644 --- a/app/views/users/show.html.haml +++ b/app/views/users/show.html.haml @@ -93,7 +93,30 @@ %h4.center.light %i.fa.fa-spinner.fa-spin .user-calendar-activities + .cover-controls + - if @user == current_user + = link_to profile_path, class: 'btn btn-gray' do + = icon('pencil') + - elsif current_user + %span.report-abuse + - if @user.abuse_report + %button.btn.btn-danger{ title: 'Already reported for abuse', + data: { toggle: 'tooltip', placement: 'left', container: 'body' }} + = icon('exclamation-circle') + - else + = link_to new_abuse_report_path(user_id: @user.id, ref_url: request.referrer), class: 'btn btn-gray', + title: 'Report abuse', data: {toggle: 'tooltip', placement: 'left', container: 'body'} do + = icon('exclamation-circle') + - if current_user + + = link_to user_path(@user, :atom, { private_token: current_user.private_token }), class: 'btn btn-gray' do + = icon('rss') +.gray-content-block.second-block + .user-calendar + %h4.center.light + %i.fa.fa-spinner.fa-spin + .user-calendar-activities .content_list = spinner |