Sha256: a330988398240cb6b8e6e61f3a6b565745661e3dc0ed89043fdec9ce5a06b213
Contents?: true
Size: 1.4 KB
Versions: 4
Compression:
Stored size: 1.4 KB
Contents
<div id="content_detail" class="ui-corner-all"> <h1 class="title"><%= t('page.listing', :model => t('activerecord.models.manifestation_reserve_stat')) -%></h1> <div id="content_list"> <table class="table table-striped index"> <tr> <th><%= t('activerecord.attributes.manifestation_reserve_stat.start_date') -%></th> <th><%= t('activerecord.attributes.manifestation_reserve_stat.end_date') -%></th> <th><%= t('activerecord.attributes.manifestation_reserve_stat.state') -%></th> <th></th> </tr> <%- @manifestation_reserve_stats.each do |manifestation_reserve_stat| -%> <tr class="line<%= cycle("0", "1") -%>"> <td><%= l(manifestation_reserve_stat.start_date) -%></td> <td><%= l(manifestation_reserve_stat.end_date) -%></td> <td><%= manifestation_reserve_stat.state -%></td> <td> <%= link_to t('page.show'), manifestation_reserve_stat -%> <%= link_to t('page.edit'), edit_manifestation_reserve_stat_path(manifestation_reserve_stat) -%> <%= link_to t('page.destroy'), manifestation_reserve_stat, :data => {:confirm => t('page.are_you_sure')}, :method => :delete -%> </td> </tr> <%- end -%> </table> <%= will_paginate(@manifestation_reserve_stats) -%> </div> </div> <div id="submenu" class="ui-corner-all"> <ul> <li><%= link_to t('page.new', :model => t('activerecord.models.manifestation_reserve_stat')), new_manifestation_reserve_stat_path -%></li> </ul> </div>
Version data entries
4 entries across 4 versions & 1 rubygems