26 lines
1.2 KiB
Plaintext
26 lines
1.2 KiB
Plaintext
- if user_signed_in?
|
|
- type ||= :nil
|
|
- if user == current_user
|
|
%a.btn.btn-default.btn-block.profile--follow-btn{href: edit_user_profile_path} Edit profile
|
|
- else
|
|
- if current_user.following? user
|
|
%button#editprofile.btn.btn-default.btn-block.profile--follow-btn{type: :button, name: 'user-action', data: { action: :unfollow, type: type, target: user.screen_name }}
|
|
Unfollow
|
|
- else
|
|
%button#editprofile.btn.btn-primary.btn-block.profile--follow-btn{type: :button, name: 'user-action', data: { action: :follow, type: type, target: user.screen_name }}
|
|
Follow
|
|
- unless user == current_user
|
|
.btn-group.btn-block
|
|
%button.btn.btn-default.btn-block.btn-sm.dropdown-toggle{data: { toggle: :dropdown }, aria: { expanded: :false }}
|
|
Actions
|
|
%span.caret
|
|
%ul.dropdown-menu
|
|
/
|
|
%li
|
|
%a{href: '#', name: 'user-action', data: { action: :block, type: type, target: user.screen_name }}
|
|
%i.fa.fa-minus-circle
|
|
Block
|
|
%li
|
|
%a{href: '#', name: 'user-action', data: { action: :report, type: type, target: user.screen_name }}
|
|
%i.fa.fa-exclamation-triangle
|
|
Report |