Add the has_many_polymorphs plugin
[cs356-p2-videostore.git] / vendor / plugins / has_many_polymorphs / test / integration / app / app / views / states / edit.html.erb
1 <h1>Editing state</h1>
2
3 <%= error_messages_for :state %>
4
5 <% form_for(@state) do |f| %>
6   <p>
7     <%= f.submit "Update" %>
8   </p>
9 <% end %>
10
11 <%= link_to 'Show', @state %> |
12 <%= link_to 'Back', states_path %>