Sha256: 188b87a38b9ae8d46c2c5f0362311b40bd7326dadcb3c97b1357de4e9f452701
Contents?: true
Size: 1.12 KB
Versions: 7
Compression:
Stored size: 1.12 KB
Contents
<div id="content_detail" class="ui-corner-all"> <h1 class="title"><%= t('page.listing', :model => t('activerecord.models.patron_merge_list')) -%></h1> <div id="content_list"> <table class="table table-striped index"> <tr> <th><%= t('activerecord.attributes.patron_merge_list.title') -%></th> <th><%= t('page.created_at') -%></th> <th></th> </tr> <%- @patron_merge_lists.each do |patron_merge_list| -%> <tr class="line<%= cycle("0", "1") -%>"> <td><%= link_to patron_merge_list.title, patron_merge_list -%></td> <td><%= l(patron_merge_list.created_at) -%></td> <td> <%= link_to t('page.show'), patron_merge_list -%> <%= link_to t('page.edit'), edit_patron_merge_list_path(patron_merge_list) -%> <%= link_to t('page.destroy'), patron_merge_list, :data => {:confirm => t('page.are_you_sure')}, :method => :delete -%> </td> </tr> <%- end -%> </table> <%= paginate(@patron_merge_lists) -%> </div> </div> <div id="submenu" class="ui-corner-all"> <ul> <li><%= link_to t('page.new', :model => t('activerecord.models.patron_merge_list')), new_patron_merge_list_path -%></li> </ul> </div>
Version data entries
7 entries across 7 versions & 1 rubygems