Created
February 22, 2021 00:59
-
-
Save armandofox/f19bf92a35686d87a5e2b8d4e0384970 to your computer and use it in GitHub Desktop.
new_review.html.erb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1> New Review for <%= @movie.title %> </h1> | |
<%= form_tag movie_review_path(@movie), class: 'form' do %> | |
<label class="col-form-label"> How many potatoes:</label> | |
<%= select_tag 'review[potatoes]', options_for_select(1..5), class: 'form-control' %> | |
<%= submit_tag 'Create Review', :class => 'btn btn-success' %> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment