Sha256: cf653bf1735f0ab4427ea0120d2f5e6efd113105267344a687eb7a5d737353bd

Contents?: true

Size: 1.03 KB

Versions: 5

Compression:

Stored size: 1.03 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), 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 policy(library_group).update? -%>
    </td>
  </tr>
<%- end -%>
</table>

</div>
</div>

<div id="submenu" class="ui-corner-all ui-widget-content">
  <ul>
    <li><%= link_to t('activerecord.models.library'), libraries_path -%></li>
  </ul>
</div>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
enju_library-0.4.0.rc.1 app/views/library_groups/index.html.erb
enju_library-0.4.0.beta.4 app/views/library_groups/index.html.erb
enju_library-0.4.0.beta.3 app/views/library_groups/index.html.erb
enju_library-0.4.0.beta.2 app/views/library_groups/index.html.erb
enju_library-0.4.0.beta.1 app/views/library_groups/index.html.erb