vlado/rails_db_info

View on GitHub
app/views/rails_db_info/tables/entries.html.erb

Summary

Maintainability
Test Coverage
<table>
  <thead>
    <tr>
      <% @table.columns.each do |column| %>
        <th><%= column.name %></th>
      <% end %>
    </tr>
  </thead>
  <tbody>
    <% @entries.each do |record| %>
      <tr>
        <% @table.columns.map(&:name).each do |key| %>
          <td class="<%= key %>"><%= record[key] %></td>
        <% end %>
      </tr>
    <% end %>
  </tbody>
</table>

<%= paginate_table_entries @entries %>