<%= render "admin_post", admin_post: admin_post %>
<%= ts("Comment") %>
<% if admin_post.count_visible_comments > 0 %>
- <%= link_to (admin_post.count_visible_comments == 1 ?
ts("Read %{comment_count} Comment", comment_count: admin_post.count_visible_comments.to_s) :
ts("Read %{comment_count} Comments", comment_count: admin_post.count_visible_comments.to_s)),
admin_post_path(id: admin_post.id, anchor: "comments", show_comments: true) %>
<% end %>
<% end %>