Sha256: b2f4e59c35cd6510cf03f01be737d4b34f6772131dbfae42bc1aa417e6a289b5
Contents?: true
Size: 394 Bytes
Versions: 23
Compression:
Stored size: 394 Bytes
Contents
<% @rows.each do |row| %> <% if row.deleted %> <tr class="deleted_or_hidden"> <% else %> <tr> <% end %> <% @cols.each do |col| %> <td> <% if col == :id %> <%= link_to row.id, { action: 'show', id: row.id, controller: controller_name } %> <% else %> <%= row.send(col) %> <% end %> </td> <% end %> </tr> <% end %>
Version data entries
23 entries across 23 versions & 1 rubygems