Skip to content

Instantly share code, notes, and snippets.

@armandofox
Created February 22, 2021 00:59
Show Gist options
  • Save armandofox/f19bf92a35686d87a5e2b8d4e0384970 to your computer and use it in GitHub Desktop.
Save armandofox/f19bf92a35686d87a5e2b8d4e0384970 to your computer and use it in GitHub Desktop.
new_review.html.erb
<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