You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
402 B
19 lines
402 B
<%= form_with(model: movie) do |f| %>
|
|
<%= f.label :title %>
|
|
<%= f.text_field :title, autofocus: true %>
|
|
|
|
<%= f.label :description %>
|
|
<%= f.text_area :description, rows: 10 %>
|
|
|
|
<%= f.label :rating %>
|
|
<%= f.text_field :rating %>
|
|
|
|
<%= f.label :released_on %>
|
|
<%= f.date_field :released_on %>
|
|
|
|
<%= f.label :total_gross %>
|
|
<%= f.number_field :total_gross %>
|
|
|
|
<%= f.submit %>
|
|
<% end %>
|