Sha256: c83d21d39fdf625433eb8debf460cc92ab5f1ff2b098d274629d65b58a92dccf

Contents?: true

Size: 720 Bytes

Versions: 10

Compression:

Stored size: 720 Bytes

Contents

<h1>Listing Admin Clients</h1>
<%= iordh.link_to_create %>
<br/>
<br/>
<table>
  <thead>
    <tr>
      <% index_attrs.each do |attr| %>
        <th>
          <%= field_name(attr).to_s.humanize %>
        </th>
      <% end %>
      <th>Actions</th>
    </tr>
  </thead>
  <tbody>
    <% @collection.each do |resource| %>
      <tr>
        <% index_attrs.each do |attr| %>
          <td>
            <%= field_value(resource, attr) %>
          </td>
        <% end %>
        <td>
          <%= iordh.link_to_show(resource) %>
          &nbsp;
          <%= iordh.link_to_edit(resource) %>
          &nbsp;
          <%= iordh.link_to_destroy(resource) %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
iord-1.2.2 test/dummy/app/views/admin/clients/index.html.erb
iord-1.2.1 test/dummy/app/views/admin/clients/index.html.erb
iord-1.2.0 test/dummy/app/views/admin/clients/index.html.erb
iord-1.1.3 test/dummy/app/views/admin/clients/index.html.erb
iord-1.1.2 test/dummy/app/views/admin/clients/index.html.erb
iord-1.1.1 test/dummy/app/views/admin/clients/index.html.erb
iord-1.1.0 test/dummy/app/views/admin/clients/index.html.erb
iord-1.0.3 test/dummy/app/views/admin/clients/index.html.erb
iord-1.0.2 test/dummy/app/views/admin/clients/index.html.erb
iord-1.0.1 test/dummy/app/views/admin/clients/index.html.erb