Guest User

Untitled

a guest
May 26th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <p>
  2. <b>Title:</b>
  3. <%=h @article.title %>
  4. </p>
  5.  
  6. <p>
  7. <b>Content:</b>
  8. <%=h @article.content %>
  9. </p>
  10.  
  11. <div id="comments">
  12. <h3><%= pluralize(@article.comments.size, "Comment") %></h3>
  13. <%= render :partial => @article.comments %>
  14. </div>
  15. <hr />
  16.  
  17. <h3>Dodaj komentarz</h3>
  18.  
  19. <% form_for Comment.new(:article => @article) do |f| %>
  20. <%= f.hidden_field :article_id %>
  21. <p>
  22. <%= errors_for @article.comments, :name %>
  23. <%= f.label :name, "Nick" %><br />
  24. <%= f.text_field :name %>
  25. </p>
  26. <p>
  27. <%= f.label :content, "Komentarz" %><br />
  28. <%= f.text_area :content, :rows => 8 %>
  29. </p>
  30. <p><%= f.submit "Dodaj Komentarz" %></p>
  31. <% end %>
  32.  
  33.  
  34.  
  35. <%= link_to 'Edit', edit_article_path(@article) %> |
  36. <%= link_to 'Back', articles_path %>
Add Comment
Please, Sign In to add comment