hello-learning/bookstore/app/views/reviews/new.html.erb
2019-10-10 10:15:45 -05:00

7 lines
181 B
Text

<h1>New Review for <%= @book.title %></h1>
<%= form_for([@book, @review]) do |f| %>
<%= f.label :body %>
<%= f.text_field :body %>
<%= f.submit(class: "button") %>
<% end %>