6 lines
157 B
Plaintext
6 lines
157 B
Plaintext
<%= form_with model: [ article, Comment.new ] do |form| %>
|
|
Your comment:<br>
|
|
<%= form.text_area :content, size: "20x5" %>
|
|
<%= form.submit %>
|
|
<% end %>
|