Retrospring/app/views/moderation/_discussion.html.haml

29 lines
1.5 KiB
Plaintext
Raw Normal View History

2014-12-27 07:38:07 -08:00
- if report.moderation_comments.all.count == 0
= t 'views.answerbox.no_comment'
2014-12-27 07:38:07 -08:00
- else
2020-05-06 13:54:36 -07:00
%ul.comment__container
2015-04-22 09:19:14 -07:00
- report.moderation_comments.order(:created_at).each do |comment|
2020-05-06 13:54:36 -07:00
%li.comment{data: { comment_id: comment.id }}
.media
2014-12-27 07:38:07 -08:00
.pull-left
2020-05-06 13:54:36 -07:00
%img.comment__user-avatar.avatar-sm{src: comment.user.profile_picture.url(:medium)}
.media-body
%h6.media-heading.comment__user
2015-05-16 20:36:23 -07:00
= 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"
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
2020-04-19 14:13:39 -07:00
.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'
2020-05-06 13:54:36 -07:00
.comment__content
= comment.content
2014-12-28 15:50:14 -08:00
.form-group.has-feedback{name: 'mod-comment-new-group', data: { id: report.id }}
2015-06-08 11:48:23 -07:00
%input.form-control.comments--box{type: :text, placeholder: t('views.placeholder.comment'), name: 'mod-comment-new', data: { id: report.id }}
2015-04-22 09:19:14 -07:00
%span.text-muted.form-control-feedback.comments--count{id: "mod-comment-charcount-#{report.id}"} 160