7 lines
181 B
Text
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 %>
|