diaspora/app/views/shared/_post_stats.mobile.haml
Augier 207b6c6153 Port to Bootstrap 3
correcting images display on stream sidebar

Corrections on profile page
2015-06-04 18:05:43 +02:00

21 lines
686 B
Text

.comment_container
.post_stats
- if @post.public?
%span.reshare_count
= @post.reshares.size
%span.comment_count
= @post.comments.size
%span.like_count
= @post.likes.size
%ul.comments
= render partial: "comments/comment", collection: @post.comments.for_a_stream, locals: {post: @post}
%li.comment.add_comment_bottom_link_container
= link_to "#", class: "show_comments bottom_collapse active" do
= image_tag "mobile/arrow_up_small.png"
- if user_signed_in?
= link_to t("comments.new_comment.comment"), new_post_comment_path(@post), class: "add_comment_bottom_link btn btn-default comment_action inactive"