Files
danbooru/app/views/table_builder/_table.html.erb

24 lines
608 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 %>