RBOnRails-learning/app/views/articles/_form.html.erb

26 lines
711 B
Plaintext
Raw Normal View History

2024-08-07 14:43:33 +00:00
<%= form_with model: article do |form| %>
<div>
<%= form.label :title %><br>
<%= form.text_field :title %>
<% article.errors.full_messages_for(:title).each do |message| %>
<div><%= message %></div>
<% end %>
</div>
<div>
<%= form.label :body %><br>
<%= form.text_area :body %>
<% article.errors.full_messages_for(:body).each do |message| %>
<div><%= message %></div>
<% end %>
</div>
<div>
<%= form.label :status %><br>
<%= form.select :status, Visible::VALID_STATUSES, selected: article.status || 'public' %><br>
</div>
<div>
<%= form.submit %>
</div>
<% end %>