28 lines
1.5 KiB
Plaintext
28 lines
1.5 KiB
Plaintext
- if report.moderation_comments.all.count == 0
|
|
= t 'views.answerbox.no_comment'
|
|
- else
|
|
%ul.comments
|
|
- report.moderation_comments.order(:created_at).each do |comment|
|
|
%li{data: { comment_id: comment.id }}
|
|
.media.comments--media
|
|
.pull-left
|
|
%img.img-rounded.answerbox--img{src: gravatar_url(comment.user)}
|
|
.media-body.comments--body
|
|
%h6.media-heading.answerbox--question-user
|
|
= user_screen_name comment.user
|
|
%span.text-muted{title: comment.created_at, data: { toggle: :tooltip, placement: :right }}
|
|
= "#{time_ago_in_words(comment.created_at)} ago"
|
|
- if comment.user == current_user
|
|
.pull-right
|
|
.btn-group
|
|
%button.btn.btn-link.btn-sm.dropdown-toggle{data: { toggle: :dropdown }, aria: { expanded: :false }}
|
|
%span.caret
|
|
.dropdown-menu.dropdown-menu-right{role: :menu}
|
|
%a.dropdown-item.text-danger{href: '#', tabindex: -1, data: { action: 'mod-comment-destroy', id: comment.id }}
|
|
%i.fa.fa-trash-o
|
|
= t 'views.actions.delete'
|
|
%p.comments--content= comment.content
|
|
.form-group.has-feedback{name: 'mod-comment-new-group', data: { id: report.id }}
|
|
%input.form-control.comments--box{type: :text, placeholder: t('views.placeholder.comment'), name: 'mod-comment-new', data: { id: report.id }}
|
|
%span.text-muted.form-control-feedback.comments--count{id: "mod-comment-charcount-#{report.id}"} 160
|