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