rails-refresher/app/views/articles/_form.html.erb
Tyrel Souza 8a91d51c39
finish
2024-07-04 21:00:08 -04:00

29 lines
643 B
Plaintext

<%= 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 %><br>
<% @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' %>
</div>
<div>
<%= form.submit %>
</div>
<% end %>