12 lines
527 B
Text
12 lines
527 B
Text
|
<%= form_for @item, url: item_url do |form| %>
|
||
|
<h3>Edit Item</h3>
|
||
|
<label for="category">Category</label>
|
||
|
<%= select_tag "category", options_from_collection_for_select(ItemCategory.all, "id", "name") %>
|
||
|
<label for="item_name">Title</label>
|
||
|
<%= form.text_field :name %>
|
||
|
<label for="item_desc">Description</label>
|
||
|
<%= form.text_area :desc, class: "description", :rows => 5 %>
|
||
|
<label for="item_link">Link</label>
|
||
|
<%= form.text_field :link, class: "link" %>
|
||
|
<%= form.submit "Update", class: "update" %>
|
||
|
<% end %>
|