Sha256: 0c2c0b0adef25ea84e7c371b77f63a8e9c248dd3b2633cb55d7a20d64d11619b

Contents?: true

Size: 1.22 KB

Versions: 22

Compression:

Stored size: 1.22 KB

Contents

<div id="content_detail" class="ui-corner-all ui-widget-content">
<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.current_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 ui-widget-content">
  <ul>
    <li><%= link_to t('page.new', model: t('activerecord.models.bookmark_stat')), new_bookmark_stat_path -%></li>
  </ul>
</div>

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
enju_bookmark-0.3.2 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.3.1 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.3.0 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.3.0.beta.1 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.2.2 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.2.1 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.2.0 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.2.0.beta.5 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.2.0.beta.3 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.2.0.beta.2 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.2.0.beta.1 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.3 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2.pre23 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2.pre22 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2.pre21 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2.pre20 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2.pre19 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2.pre18 app/views/bookmark_stats/index.html.erb
enju_bookmark-0.1.2.pre17 app/views/bookmark_stats/index.html.erb