Advertisement
aacode20

edit.html.erb

Apr 6th, 2019
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <h1>Edit article</h1>
  2.  
  3. <%= form_with(model: @article, local: true) do |form| %>
  4.  
  5. <% if @article.errors.any? %>
  6. <div id="error_explanation">
  7. <h2>
  8. <%= pluralize(@article.errors.count, "error") %> prohibited
  9. this article from being saved:
  10. </h2>
  11. <ul>
  12. <% @article.errors.full_messages.each do |msg| %>
  13. <li><%= msg %></li>
  14. <% end %>
  15. </ul>
  16. </div>
  17. <% end %>
  18.  
  19. <p>
  20. <%= form.label :title %><br>
  21. <%= form.text_field :title %>
  22. </p>
  23.  
  24. <p>
  25. <%= form.label :text %><br>
  26. <%= form.text_area :text %>
  27. </p>
  28.  
  29. <p>
  30. <%= form.submit %>
  31. </p>
  32.  
  33. <% end %>
  34.  
  35. <%= link_to 'Back', articles_path %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement