tap/app/views/users/edit.html.erb

11 lines
185 B
Plaintext
Raw Normal View History

2015-03-20 01:21:56 +00:00
<h2>Edit <%= @user.nickname %></h2>
<%= render 'flash' %>
<%= f_form_for @user do |f| %>
<%= f.error_messages %>
<%= f.file_field :avatar %>
<%= f.submit "Update" %>
<% end %>