noesya/osuny

View on GitHub
app/views/admin/communication/blocks/templates/datatable/_snippet.html.erb

Summary

Maintainability
Test Coverage
<div class="table-responsive">
  <table class="table table-sm">
    <% unless block.template.caption.blank? %>
      <caption><%= block_component_snippet block, :caption %></caption>
    <% end %>
    <thead>
      <tr>
        <%= block_component_snippet block, :columns, tag: 'th' %>
      </tr>
    </thead>
    <tbody>
      <% block.template.elements.each do |row| %>
        <tr>
          <%= block_component_snippet block, :cells, template: row %>
        </tr>
      <% end %>
    </tbody>
  </table>
</div>