Created
March 24, 2009 13:00
-
-
Save hidenowt/84070 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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