X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=app%2Fviews%2Fproducts%2Fedit.html.erb;fp=app%2Fviews%2Fproducts%2Fedit.html.erb;h=af3b7473f3329b0a2c7bb9870e66a0e39f72670a;hb=e580d4626176c8deb6f44fec7e66f980b5923b29;hp=0000000000000000000000000000000000000000;hpb=28668145b30d983f624bebb24e9ac9c23d9b13cd;p=depot.git diff --git a/app/views/products/edit.html.erb b/app/views/products/edit.html.erb new file mode 100644 index 0000000..af3b747 --- /dev/null +++ b/app/views/products/edit.html.erb @@ -0,0 +1,24 @@ +

Editing product

+ +<% form_for(@product) do |f| %> + <%= f.error_messages %> + +

+ <%= f.label :title %>
+ <%= f.text_field :title %> +

+

+ <%= f.label :description %>
+ <%= f.text_area :description %> +

+

+ <%= f.label :image_url %>
+ <%= f.text_field :image_url %> +

+

+ <%= f.submit "Update" %> +

+<% end %> + +<%= link_to 'Show', @product %> | +<%= link_to 'Back', products_path %>