EvoBal/app/views/emails/_list.html.erb

19 lines
313 B
Plaintext
Raw Normal View History

<table>
<thead>
<tr>
<th>Date</th>
<th>Subject</th>
<th>Metadata</th>
<th colspan="3"></th>
</tr>
</thead>
<tbody>
2021-01-31 17:17:37 +01:00
<% emails.each do |email| %>
<%= render partial: "list_row", object: email, as: :email %>
<% end %>
</tbody>
</table>
<%= paginate @emails %>