_form.html.erb 255 Bytes
Newer Older
Paulo Gozum's avatar
Paulo Gozum committed
1 2 3 4 5 6 7
<%= simple_form_for([:admin, @movie]) do |f| %>
  <%= f.input :title  %>
  <%= f.input :year_released %>
  <%= f.input :genre, as: :select, collection:["comedy", "drama", "horror", "classic"] %>
  <%= f.input :rating %>
  <%= f.submit %>
<% end %>