Sha256: 33b64d80f6758bcb4c95e1f16cffcfc5fb8420723afa61c1f80ad00f02bc6d69
Contents?: true
Size: 1.2 KB
Versions: 1
Compression:
Stored size: 1.2 KB
Contents
<div id="content_detail" class="ui-corner-all"> <h1 class="title"><%= t('page.listing', :model => t('activerecord.models.order_list')) -%></h1> <div id="content_list"> <table class="table table-striped index"> <tr> <th><%= t('activerecord.attributes.order_list.title') -%></th> <th><%= t('activerecord.models.bookstore') -%></th> <th><%= t('activerecord.attributes.order_list.note') -%></th> <th id="edit_icons"></th> </tr> <%- @order_lists.each do |order_list| -%> <tr class="line<%= cycle("0", "1") -%>"> <td><%= link_to order_list.title, order_list -%></td> <td><%= link_to order_list.bookstore.name, order_list.bookstore -%></td> <td><%= order_list.note -%></td> <td> <%= link_to image_tag('icons/page_white_edit.png', :size => '16x16', :alt => t('page.edit')), edit_order_list_path(order_list) -%> <%= link_to t('page.destroy'), order_list, :data => {:confirm => t('page.are_you_sure')}, :method => :delete -%> </tr> <%- end -%> </table> <%= will_paginate(@order_lists) -%> </div> </div> <div id="submenu" class="ui-corner-all"> <ul> <li><%= link_to t('page.new', :model => t('activerecord.models.order_list')), new_order_list_path -%></li> </ul> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
enju_purchase_request-0.0.14 | app/views/order_lists/index.html.erb |