Guest User

Untitled

a guest
May 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. #
  2. # это часть выводить паршл
  3. #
  4. <div id="comments">
  5. <div id="comments_count"><%=@post.comments.size.rus_items('комментарий', 'комментария', 'комментариев') %></div>
  6. <% @post.comments.each_with_index do |comment, index| %>
  7. <%= render :partial => 'comments/comment', :locals => {:comment => comment, :index => index + 1} -%>
  8. <% end %>
  9. </div>
  10.  
  11. #
  12. # Это паршл комментария
  13. #
  14. <div class="comment_header">
  15. <%= comment.created_at.to_formatted_s(:short) %>
  16. <%= link_to comment.user.full_name, :controller => 'users', :action => 'dude', :id => comment.user.id %>
  17.  
  18. <%= index %>
  19.  
  20. <p><%= simple_format h(comment.content) %></p>
  21. </div>
Add Comment
Please, Sign In to add comment