mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
29 lines
544 B
Plaintext
29 lines
544 B
Plaintext
<h1>Editing category</h1>
|
|
|
|
<% form_for(@category) do |f| %>
|
|
<%= f.error_messages %>
|
|
|
|
<p>
|
|
<%= f.label :name %><br />
|
|
<%= f.text_field :name %>
|
|
</p>
|
|
<p>
|
|
<%= f.label :description %><br />
|
|
<%= f.text_area :description %>
|
|
</p>
|
|
<p>
|
|
<%= f.label :photo_id %><br />
|
|
<%= f.text_field :photo_id %>
|
|
</p>
|
|
<p>
|
|
<%= f.label :base_colour %><br />
|
|
<%= f.text_field :base_colour %>
|
|
</p>
|
|
<p>
|
|
<%= f.submit 'Update' %>
|
|
</p>
|
|
<% end %>
|
|
|
|
<%= link_to 'Show', @category %> |
|
|
<%= link_to 'Back', categories_path %>
|