Advertisement
Guest User

Untitled

a guest
May 22nd, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.48 KB | None | 0 0
  1. <h1>Hello, <%= @user.full_name %>!</h1>
  2.  
  3. <h2>Your Details:</h2>
  4. <ul>
  5. <li>Screen name: <%= @user.screen_name %></li>
  6. <li>E-mail address: <%= @user.e_mail %></li>
  7. <li>Occupation: <%= @user.occupation %></li>
  8. <li>
  9.   Town/City: <%= @user.town %>
  10.   (<%= link_to "see all people in your town",
  11.                 :controller => :user,
  12.                 :action => :find_by_town,
  13.                 :id => @user.town %>)
  14. </li>
  15. </ul>
  16. <p><%= link_to "Edit Your Details", :action => :edit %></p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement