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

20 lines
426 B
Plaintext
Raw Normal View History

2014-11-09 21:53:39 +00:00
<div class="row">
<aside class="col-md-4">
<section class="user_info">
<h1>
<%= @user.name %>
<%= @user.marks %>
</h1>
</section>
</aside>
<div class="col-md-8">
<% if @user.orders.any? %>
<h3>Orders (<%= @user.orders.count %>)</h3>
<ol class="orders">
<%= render @orders %>
</ol>
<%= will_paginate @orders %>
<% end %>
</div>
</div>