Skip to content

Instantly share code, notes, and snippets.

@hidenowt
Created March 24, 2009 13:00
Show Gist options
  • Save hidenowt/84070 to your computer and use it in GitHub Desktop.
Save hidenowt/84070 to your computer and use it in GitHub Desktop.
<!-- partial -->
<%= f.error_messages %>
<p>
<%= f.label :name %><br />
<%= f.text_field :name %>
</p>
<p>
<%= f.label :email %><br />
<%= f.text_field :email %>
</p>
<p>
<%= f.label :phone %><br />
<%= f.text_field :phone %>
</p>
<p>
<%= f.label :avatar %><br />
<!-- veja que colocamos o file_field para ter o botão de busca do arquivo -->
<%= f.file_field :avatar %>
<p>
<% unless user.new_record? || !user.avatar? %>
<p>
<%= image_tag(@user.avatar.url, :align => "absmiddle") %>
</p>
<% end %>
<!-- partial -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment