28 lines
723 B
Plaintext
28 lines
723 B
Plaintext
<%= tag.table table.table_attributes do %>
|
|
<thead>
|
|
<tr>
|
|
<% table.columns.each do |column| %>
|
|
<%= tag.th column.header_attributes do %>
|
|
<% if column.is_html_safe %>
|
|
<%= column.name.html_safe %>
|
|
<% else %>
|
|
<%= column.name %>
|
|
<% end %>
|
|
<% 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 %>
|