2014-12-27 07:38:07 -08:00
|
|
|
- if report.moderation_comments.all.count == 0
|
|
|
|
There are no comments yet.
|
|
|
|
- else
|
|
|
|
%ul.comments
|
|
|
|
- report.moderation_comments.all.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
|
2014-12-28 16:05:30 -08:00
|
|
|
- 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
|
|
|
|
%ul.dropdown-menu.dropdown-menu-right{role: :menu}
|
|
|
|
%li.text-danger
|
|
|
|
%a{href: '#', data: { action: 'mod-comment-destroy', id: comment.id }}
|
|
|
|
%i.fa.fa-trash-o
|
|
|
|
Delete
|
2014-12-27 07:38:07 -08:00
|
|
|
%p.comments--content= comment.content
|
2014-12-28 15:50:14 -08:00
|
|
|
.form-group.has-feedback{name: 'mod-comment-new-group', data: { id: report.id }}
|
|
|
|
%input.form-control.comments--box{type: :text, 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
|