Sha256: 986a205ca6032dc539c3e8d8ae89e65e011d7264e91b7606e58e60a028535ad9
Contents?: true
Size: 721 Bytes
Versions: 10
Compression:
Stored size: 721 Bytes
Contents
<h1>Listing Normal 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