Sha256: 7a1935467e71794b1cf671ea7d15568642817f48dd18d5d930b6ae50c2561414
Contents?: true
Size: 1.06 KB
Versions: 14
Compression:
Stored size: 1.06 KB
Contents
<div id="content_detail" class="ui-corner-all"> <h1 class="title"><%= t('page.listing', :model => t('activerecord.models.participate')) -%></h1> <div id="content_list"> <table class="table table-striped index"> <tr> <th><%= t('activerecord.models.patron') -%></th> <th><%= t('activerecord.models.event') -%></th> </tr> <%- @participates.each do |participate| %> <tr class="line<%= cycle("0", "1") -%>"> <td><%= link_to participate.patron.full_name, participate.patron %> <td><%= link_to participate.event.display_name.localize, participate.event %> <td><%= link_to t('page.show'), participate %></td> <td><%= link_to t('page.edit'), edit_participate_path(participate) %></td> <td><%= link_to t('page.destroy'), participate, :data => {:confirm => t('page.are_you_sure')}, :method => :delete %></td> </tr> <%- end %> </table> <%= paginate(@participates) -%> </div> </div> <div id="submenu" class="ui-corner-all"> <ul> <li><%= link_to t('page.new', :model => t('activerecord.models.participate')), new_participate_path -%></li> </ul> </div>
Version data entries
14 entries across 14 versions & 1 rubygems