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) %> <%= iordh.link_to_edit(resource) %> <%= iordh.link_to_destroy(resource) %> </td> </tr> <% end %> </tbody> </table>
Version data entries
10 entries across 10 versions & 1 rubygems