Files
danbooru/app/views/table_builder/_table.html.erb
2019-11-17 22:35:53 -06:00

22 lines
497 B
Plaintext

<%= tag.table table.html_attributes do %>
<thead>
<tr>
<% table.columns.each do |column| %>
<th><%= column.name %></th>
<% end %>
</tr>
</thead>
<tbody>
<% table.items.each do |item| %>
<%= tag.tr table.row_attributes(item) do %>
<% table.columns.each do |column| %>
<%= tag.td column.html_attributes do %>
<%= column.value(item) %>
<% end %>
<% end %>
<% end %>
<% end %>
</tbody>
<% end %>