2015-01-06 20:33:11 +01:00
|
|
|
<%= render partial: 'flash' %>
|
2014-11-09 22:53:39 +01:00
|
|
|
<div class="row">
|
2015-01-09 19:15:48 +01:00
|
|
|
<div class="user_info">
|
2015-08-31 14:33:15 +02:00
|
|
|
<% if can? :edit, @user %>
|
2015-03-19 18:04:58 +01:00
|
|
|
<h5>
|
|
|
|
<%= link_to "[Edit dagschotel]" , user_edit_dagschotel_path(@user) %>
|
2015-03-20 02:21:56 +01:00
|
|
|
<%= link_to "[Edit profile]" , edit_user_path(@user) %>
|
2015-03-19 18:04:58 +01:00
|
|
|
</h5>
|
|
|
|
<% end %>
|
2015-03-19 17:38:59 +01:00
|
|
|
<h2><%= @user.nickname %></h2>
|
2015-08-31 14:33:15 +02:00
|
|
|
<div class="actions">
|
|
|
|
<%= link_to "PLACE ORDER!", new_user_order_path(@user) if current_user == @user %>
|
|
|
|
<span>DEBT: <%= euro(@user.debt) %></span>
|
|
|
|
</div>
|
2015-01-09 19:15:48 +01:00
|
|
|
</div>
|
2015-03-02 16:10:54 +01:00
|
|
|
|
2015-03-10 11:37:48 +01:00
|
|
|
<% if @orders.any? %>
|
2015-03-02 16:10:54 +01:00
|
|
|
<div class="stats">
|
|
|
|
<h4>Total products</h4>
|
2015-08-31 14:33:15 +02:00
|
|
|
Total:
|
2015-03-19 17:38:59 +01:00
|
|
|
<ul>
|
2015-08-31 14:33:15 +02:00
|
|
|
<li>
|
|
|
|
<%= @categories.map{|c| pluralize(c.count, c.category)}.to_sentence %>
|
|
|
|
</li>
|
2015-03-19 17:38:59 +01:00
|
|
|
</ul>
|
2015-03-02 16:10:54 +01:00
|
|
|
|
2015-08-31 14:33:15 +02:00
|
|
|
Specifics:
|
|
|
|
<%= content_tag :ul do %>
|
|
|
|
<% @products.each do |p| %>
|
|
|
|
<%= content_tag :li, pluralize(p.count, p.name) %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
2015-02-19 15:41:12 +01:00
|
|
|
<h4>All orders (<%= @user.orders_count %>)</h4>
|
2015-03-12 13:25:11 +01:00
|
|
|
<table class="orders"><%= render @orders %></table>
|
2015-02-09 13:23:38 +01:00
|
|
|
<%= will_paginate @orders %>
|
2015-01-09 19:15:48 +01:00
|
|
|
</div>
|
|
|
|
<% end %>
|
2014-11-23 21:12:31 +01:00
|
|
|
</div>
|