Sha256: f98061954fa0eb99ab9f8b46004c9a1a64ea02f6611b50fc467ba6019f493d20
Contents?: true
Size: 845 Bytes
Versions: 86
Compression:
Stored size: 845 Bytes
Contents
<div id="content_list"> <h1 class="title"><%= t('page.listing', :model => t('activerecord.models.basket')) -%></h1> <div id="content_detail" class="ui-corner-all"> <table class="index"> <tr> <th><%= t('activerecord.models.user') -%></th> <th><%= t('activerecord.attributes.basket.note') -%></th> <th><%= t('page.updated_at') -%></th> </tr> <%- @baskets.each do |basket| -%> <tr class="line<%= cycle("0", "1") -%>"> <td><%= basket.user.username -%></td> <td><%= basket.note -%></td> <td><%= basket.updated_at -%></td> <td><%= link_to t('page.show'), basket -%></td> </tr> <%- end -%> </table> <%= will_paginate(@baskets) -%> </div> </div> <div id="submenu" class="ui-corner-all"> <ul> <li><%= link_to t('page.new', :model => t('activerecord.models.basket')), new_basket_path -%></li> </ul> </div>
Version data entries
86 entries across 86 versions & 2 rubygems