2011-07-08 5 views
0

共有/ _comments.html.haml注文多型コメント

'のcreated_at DESC' で多型のコメントをご注文方法
#comments 
    - commentable.comments.each do |comment| 
    = link_to image_tag(avatar_url comment.user_id,36), :controller => 'users', :action => 'show', :id => comment.user_id 
    = comment.content 
    %br 

?お使いのモデルで

答えて

1

:あなたのビューで次に

scope :by_created_at, order('created_at DESC') 

- commentable.comments.by_created_at.each do |comment|