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

28 lines
678 B
Text
Raw Normal View History

<%= render partial: 'flash' %>
2014-11-09 22:53:39 +01:00
<div class="row">
2015-09-01 17:40:18 +02:00
<%= render 'sidebar' %>
2015-09-01 14:52:20 +02:00
<div id="user_info" class="col-sm-9">
<% if @orders.any? %>
<h4>Previously ordered</h4>
Total:
<ul>
<li>
2015-09-01 14:52:20 +02:00
<%= @categories.map{|c| pluralize(c.count, c.category)}.to_sentence %>
</li>
</ul>
2015-03-02 16:10:54 +01:00
Specifics:
<%= content_tag :ul do %>
<% @products.each do |p| %>
2015-09-01 14:52:20 +02:00
<%= content_tag :li, pluralize(p.count, p.name) %>
<% end %>
2015-09-01 14:52:20 +02:00
<% end %>
2015-02-19 15:41:12 +01:00
<h4>All orders (<%= @user.orders_count %>)</h4>
<table class="orders"><%= render @orders %></table>
<%= will_paginate @orders %>
</div>
<% end %>
2014-11-23 21:12:31 +01:00
</div>
2015-09-01 14:52:20 +02:00
</div>