openstreetmap-website/app/views/messages/_messages_table.html.erb
2023-12-19 12:57:47 -05:00

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>