Displaying 2 results from an estimated 2 matches for "comment_name".
Did you mean:
  command_name
  
2005 Dec 19
7
Error handling!
Hello all,
I''m in the beginning states of learning ruby on rails development and 
have got to a part where I''m a little stuck! Basically writing a simple 
blog application, just to try something completely different! ;-)
I have a page which displays the current blog entry, it''s comments and 
at the bottom of the page, a form to add a comment. So far, so good. 
2006 Sep 07
6
form_for - Child object - how to set parent id
...ass="blog_comments">
        <span class="blog_comments_count"><%=h 
pluralize(blog.comments.size,"comments") %></h2>
        <% for comment in blog.comments %>
            <div class="comment">
            <div class="comment_name"><%=h comment.name %> said:</div>
            <div class="comment_body"><%=h comment.body %></div>
            <div class="comment_date"><%=h 
comment.date_entered.to_s(:long) %></div>
            </div>
        <%...