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

23 lines
860 B
Plaintext
Raw Normal View History

2014-12-09 21:32:54 +00:00
<div class="col-md-3">
2014-12-10 04:13:17 +00:00
<div class="thumbnail monopoly">
<h3 class="header" style="background-color: #<%=get_color(user)%>;" ><%= user.full_name %></h3>
2014-12-09 21:32:54 +00:00
<div class="caption">
2014-12-10 04:13:17 +00:00
<% if user.avatar.exists? %>
2014-12-10 04:24:30 +00:00
<%= image_tag(user.avatar , class: "img-circle avatar") %>
2014-12-10 04:13:17 +00:00
<% else %>
2014-12-10 04:24:30 +00:00
<%= image_tag("http://babeholder.pixoil.com/img/70/70", class: "img-circle avatar") %>
2014-12-10 04:13:17 +00:00
<% end %>
2014-12-09 21:32:54 +00:00
<p><strong>Name:</strong> <%= user.name %></p>
<p><strong>Last name:</strong> <%= user.last_name %></p>
<p><strong>Nickname:</strong> <%= user.nickname %></p>
<p><strong>Balance:</strong> <%= user.balance %></p>
2014-12-10 04:13:17 +00:00
</div>
<div class="footer">
2014-12-09 21:32:54 +00:00
<p>
<%= link_to "Delete", user_path(user), method: :delete, class: "btn btn-danger", data: {confirm: 'Are you sure?'} %>
</p>
2014-12-10 04:13:17 +00:00
2014-12-09 21:32:54 +00:00
</div>
</div>
</div>