Sha256: 464af5d66ad649c943851b68321080d15b6d58728416a0e0aa19396a79a020fe

Contents?: true

Size: 1.19 KB

Versions: 10

Compression:

Stored size: 1.19 KB

Contents

<div id="content_detail" class="ui-corner-all">
<h1 class="title"><%= t('page.listing', :model => t('activerecord.models.bookmark_stat')) -%></h1>
<div id="content_list">

<table class="table table-striped index">
  <tr>
    <th><%= t('activerecord.attributes.bookmark_stat.start_date') -%></th>
    <th><%= t('activerecord.attributes.bookmark_stat.end_date') -%></th>
    <th><%= t('activerecord.attributes.bookmark_stat.state') -%></th>
    <th></th>
  </tr>

<%- @bookmark_stats.each do |bookmark_stat| -%>
  <tr class="line<%= cycle("0", "1") -%>">
    <td><%= l(bookmark_stat.start_date) -%></td>
    <td><%= l(bookmark_stat.end_date) -%></td>
    <td><%= bookmark_stat.state -%></td>
    <td>
      <%= link_to t('page.show'), bookmark_stat -%>
      <%= link_to t('page.edit'), edit_bookmark_stat_path(bookmark_stat) -%>
      <%= link_to t('page.destroy'), bookmark_stat, :data => {:confirm => t('page.are_you_sure')}, :method => :delete -%>
    </td>
  </tr>
<%- end -%>
</table>

<%= paginate(@bookmark_stats) -%>
</div>
</div>

<div id="submenu" class="ui-corner-all">
  <ul>
    <li><%= link_to t('page.new', :model => t('activerecord.models.bookmark_stat')), new_bookmark_stat_path -%></li>
  </ul>
</div>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
enju_bookmark-0.1.2.pre14 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2.pre13 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2.pre12 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2.pre11 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2.pre10 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2.pre9 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2.pre8 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2.pre7 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2.pre6 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2.pre5 app/views/bookmark_stats/index.html.erb