15 lines
464 B
Plaintext
15 lines
464 B
Plaintext
<li id="<%= dom_id(investment) %>">
|
|
<%= link_to investment.title, investment %>
|
|
<span><%= format_price(investment.price) %></span>
|
|
|
|
<% if @budget.balloting? %>
|
|
<%= link_to ballot_line_path(id: investment.id),
|
|
title: t('budgets.ballots.show.remove'),
|
|
class: "remove-investment-project",
|
|
method: :delete,
|
|
remote: true do %>
|
|
<span class="icon-x"></span>
|
|
<% end %>
|
|
<% end %>
|
|
</li>
|