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

24 lines
708 B
Plaintext
Raw Normal View History

<%= render partial: 'flash' %>
2014-11-09 21:53:39 +00:00
<div class="row">
<div class="user_info">
<h2><%= @user.nickname %> (<%= @user.full_name %>)</h2>
<h5><%= link_to "[Edit profile]" , edit_user_registration_path %></h5>
<h4>Balance: <%= euro(@user.balance) %></h4>
</div>
2014-11-23 20:12:31 +00:00
<% if @user.orders.any? %>
<div class="col-md-6">
<h3>Orders (<%= @user.orders_count %>)</h3>
<%= render @orders %>
<%= will_paginate @orders %>
</div>
<% end %>
<div class="col-md-6">
<h3>Products</h3>
<%= render partial: "products/product_row", collection: @products, as: :product %>
<h4>Categories</h4>
<%= render partial: "products/category", collection: @categories %>
</div>
2014-11-23 20:12:31 +00:00
</div>