Retrospring/app/views/modal/_comment_smiles.haml

19 lines
990 B
Plaintext
Raw Normal View History

.modal.fade{"id" => "modal-view-comment#{comment.id}-smiles","aria-hidden" => "true", "aria-labelledby" => "modal-view-comment#{comment.id}-smiles-label", :role => "dialog", :tabindex => "-1"}
.modal-dialog
.modal-content
.modal-header
2020-04-19 14:26:29 -07:00
%h5#modal-ask-followers-label.modal-title= t 'views.answerbox.commentsmile'
%button.close{"data-dismiss" => "modal", :type => "button"}
%span{"aria-hidden" => "true"} ×
%span.sr-only Close
.modal-body
- if comment.smiles.all.count == 0
2015-05-26 18:53:53 -07:00
= t 'views.answerbox.no_smile'
- else
%ul.user-list.user-list-smiles
- comment.smiles.all.each do |smile|
%li.user-list-entry.user-list-entry-smiles
%a{href: show_user_profile_path(smile.user.screen_name)}
%img.img-rounded{src: gravatar_url(smile.user), alt: user_screen_name(smile.user, url: false)}
%span= user_screen_name(smile.user, url: false)