17 lines
604 B
Plaintext
17 lines
604 B
Plaintext
<li id="<%= dom_id(investment) %>_sidebar">
|
|
<%= investment.title %>
|
|
<span><%= investment.formatted_price %></span>
|
|
|
|
<% if @budget.balloting? %>
|
|
<%= link_to budget_ballot_line_url(id: investment.id,
|
|
investments_ids: investment_ids),
|
|
title: t('budgets.ballots.show.remove'),
|
|
class: "remove-investment-project",
|
|
method: :delete,
|
|
remote: true do %>
|
|
<span class="show-for-sr"><%= t('budgets.ballots.show.remove') %></span>
|
|
<span class="icon-x"></span>
|
|
<% end %>
|
|
<% end %>
|
|
</li>
|