Created tables, product scaffold
[depot.git] / app / views / products / edit.html.erb
1 <h1>Editing product</h1>
2
3 <% form_for(@product) do |f| %>
4 <%= f.error_messages %>
5
6 <p>
7 <%= f.label :title %><br />
8 <%= f.text_field :title %>
9 </p>
10 <p>
11 <%= f.label :description %><br />
12 <%= f.text_area :description %>
13 </p>
14 <p>
15 <%= f.label :image_url %><br />
16 <%= f.text_field :image_url %>
17 </p>
18 <p>
19 <%= f.submit "Update" %>
20 </p>
21 <% end %>
22
23 <%= link_to 'Show', @product %> |
24 <%= link_to 'Back', products_path %>