Sha256: 974ecba19bd13ecd572b5e0286bc58d21456ab64549c3e1f450eaba2d540de59

Contents?: true

Size: 1.02 KB

Versions: 9

Compression:

Stored size: 1.02 KB

Contents

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

<table class="table table-striped index">
  <tr>
    <th><%= t('activerecord.attributes.library_group.display_name') -%></th>
    <th><%= t('activerecord.attributes.library_group.name') -%></th>
    <th><%= t('activerecord.attributes.library_group.email') -%></th>
    <td></td>
  </tr>

<%- @library_groups.each do |library_group| -%>
  <tr class="line<%= cycle("0", "1") -%>">
    <td><%= link_to h(library_group.display_name.localize), library_group -%></td>
    <td><%= library_group.name -%></td>
    <td><%= library_group.user.email -%></td>
    <td>
      <%= link_to t('page.edit'), edit_library_group_path(library_group) if can?(:update, library_group) -%>
    </td>
  </tr>
<%- end -%>
</table>

</div>
</div>

<div id="submenu" class="ui-corner-all ui-widget-content">
  <ul>
    <li><%= t('library_group.configuration') -%></li>
  </ul>
</div>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
enju_library-0.1.0.pre42 app/views/library_groups/index.html.erb
enju_library-0.1.0.pre41 app/views/library_groups/index.html.erb
enju_library-0.1.0.pre40 app/views/library_groups/index.html.erb
enju_library-0.1.0.pre39 app/views/library_groups/index.html.erb
enju_library-0.1.0.pre38 app/views/library_groups/index.html.erb
enju_library-0.1.0.pre37 app/views/library_groups/index.html.erb
enju_library-0.1.0.pre36 app/views/library_groups/index.html.erb
enju_library-0.1.0.pre35 app/views/library_groups/index.html.erb
enju_library-0.1.0.pre34 app/views/library_groups/index.html.erb