Files
nairobi/app/views/budgets/ballot/_investment_for_sidebar.html.erb
2017-06-13 17:51:57 +02:00

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>