Files
nairobi/app/views/users/_proposals.html.erb
2017-10-18 18:54:43 +02:00

14 lines
337 B
Plaintext

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