18 lines
694 B
Plaintext
18 lines
694 B
Plaintext
<table id="budget_investments_list" class="clear activity-budget-investments">
|
|
<% @budget_investments.each do |budget_investment| %>
|
|
<tr id="budget_investment_<%= budget_investment.id %>">
|
|
<td>
|
|
<%= link_to budget_investment.title, budget_investment_path(budget_investment.budget, budget_investment) %>
|
|
</td>
|
|
<td class="text-right">
|
|
<% if can? :destroy, budget_investment %>
|
|
<%= link_to t('shared.delete'), budget_investment_path(budget_investment.budget, budget_investment),
|
|
method: :delete, class: "button hollow alert" %>
|
|
<% end %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
<%= paginate @budget_investments %>
|