33 lines
674 B
Plaintext
33 lines
674 B
Plaintext
<%= form_with scope: :article, url: articles_path, local: true do |form| %>
|
|
|
|
<% if @article.errors.any? %>
|
|
<div id="error_explanation">
|
|
<h2>
|
|
<%= pluralize(@article.errors.count, "error") %> prohibited
|
|
this article from being saved:
|
|
</h2>
|
|
<ul>
|
|
<% @article.errors.full_messages.each do |msg| %>
|
|
<li><%= msg %></li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
<% end %>
|
|
|
|
<p>
|
|
<%= form.label :title %><br>
|
|
<%= form.text_field :title %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= form.label :text %><br>
|
|
<%= form.text_area :text %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= form.submit %>
|
|
</p>
|
|
|
|
<% end %>
|
|
|
|
<%= link_to 'Back', articles_path %> |