Files
danbooru/app/views/table_builder/_table.html.erb
2020-01-06 01:56:16 -06:00

24 lines
600 B
Plaintext

<%= tag.table table.table_attributes do %>
<thead>
<tr>
<% table.columns.each do |column| %>
<%= tag.th column.header_attributes do %>
<%= column.name %>
<% end %>
<% end %>
</tr>
</thead>
<tbody>
<% table.items.each_with_index do |item, i| %>
<%= tag.tr table.all_row_attributes(item, i) do %>
<% table.columns.each_with_index do |column, j| %>
<%= tag.td column.body_attributes do %>
<%= column.value(item, i, j) %>
<% end %>
<% end %>
<% end %>
<% end %>
</tbody>
<% end %>