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