Guest User

Untitled

a guest
May 20th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. ## partial new_comment
  2. <h1>Nowy komentarz</h1>
  3. <% form_for(@post.comments.new) do |f| %>
  4.  
  5. <p>
  6. <%= f.label :body %><br />
  7. <%= f.text_area :body %>
  8. </p>
  9.  
  10. <p>
  11. <%= f.submit "Create" %>
  12. </p>
  13. <% end %>
  14. ## show post
  15. <p>
  16. <b>Title:</b>
  17. <%=h @post.title %>
  18. </p>
  19.  
  20. <p>
  21. <b>Body:</b>
  22. <%=h @post.body %>
  23. </p>
  24.  
  25. <p>
  26. <b>Autor:</b>
  27. <%=h @post.user.login.capitalize %>
  28. </p>
  29.  
  30.  
  31. <%= render :partial => "posts/show_comments" %>
  32. <%= render :partial => "posts/new_comment" %>
  33.  
  34.  
  35. <%= link_to 'Edit', edit_post_path(@post) %> |
  36. <%= link_to 'Back', posts_path %>
Add Comment
Please, Sign In to add comment