13 lines
343 B
Text
13 lines
343 B
Text
<table class="table table-sm align-middle">
|
|
<thead>
|
|
<tr>
|
|
<% columns.each do |column| %>
|
|
<th><%= t ".#{column}" %></th>
|
|
<% end %>
|
|
<th class="d-flex justify-content-end"><%= t ".actions" %></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<%= render :partial => inner_partial, :collection => messages %>
|
|
</tbody>
|
|
</table>
|