Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <div class="container">
  2. <div class="row">
  3. <div class="col-md-3">
  4. <%= image_tag @user.profile.avatar.url, class: 'lego-man' %>
  5. </div>
  6. <div class="col-md-6">
  7. <h1><%= @user.profile.first_name %> <%= @user.profile.last_name %></h1>
  8. <h3><%= @user.profile.job_title %></h3>
  9. <div class="well">
  10. <h3>Decription</h3>
  11. <%= @user.profile.description %>
  12. </div>
  13. <% if current_user.plan_id == 2 %>
  14. <div class="well">
  15. <h3>Contact Information</h3>
  16. <%= @user.profile.phone_number %><br/>
  17. <%= @user.profile.contact_email %><br/>
  18. </div>
  19. <% end %>
  20. </div>
  21. </div>
  22. </div>
  23.  
  24. .lego-man {
  25. width: 128px;
  26. height: 128px;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement