Files
grecia/app/views/users/_proposals.html.erb
2019-03-14 11:30:59 +01:00

16 lines
360 B
Plaintext

<table class="margin-top">
<thead>
<tr>
<th scope="col"><%= t("users.show.proposals") %></th>
<th scope="col" colspan="2"><%= t("users.show.actions") %></th>
</tr>
</thead>
<tbody>
<% @proposals.each do |proposal| %>
<%= render "proposal", proposal: proposal %>
<% end %>
</tbody>
</table>
<%= paginate @proposals %>