2014-12-05 11:17:44 -08:00
|
|
|
- if a.comments.all.count == 0
|
2014-12-05 10:50:21 -08:00
|
|
|
There are no comments yet.
|
2014-12-09 06:32:29 -08:00
|
|
|
- else
|
2014-12-07 06:36:08 -08:00
|
|
|
%ul.comments
|
2014-12-05 11:17:44 -08:00
|
|
|
- a.comments.all.each do |comment|
|
2014-12-08 07:01:27 -08:00
|
|
|
%li{data: { comment_id: comment.id }}
|
2014-12-14 06:42:54 -08:00
|
|
|
%img.img-rounded.answerbox--img-small{src: gravatar_url(comment.user)}
|
2014-12-07 06:36:08 -08:00
|
|
|
%b= user_screen_name comment.user
|
2014-12-05 11:17:44 -08:00
|
|
|
= comment.content
|
|
|
|
- if user_signed_in?
|
2014-12-07 06:05:44 -08:00
|
|
|
.form-group.has-feedback{name: 'ab-comment-new-group', 'data-a-id' => a.id}
|
2014-12-10 12:16:18 -08:00
|
|
|
%input.form-control.comments--box{type: :text, placeholder: 'Comment...', name: 'ab-comment-new', data: {a_id: a.id }}
|
2014-12-09 06:32:29 -08:00
|
|
|
%span.text-muted.form-control-feedback.comments--count{id: "ab-comment-charcount-#{a.id}"} 160
|