transforms _votes to use parameters instead of @ variables

This commit is contained in:
kikito
2016-12-02 19:22:11 +01:00
parent 2ec4f53367
commit e280645511

View File

@@ -1,6 +1,6 @@
<% reason = investment.reason_for_not_being_selectable_by(current_user) %>
<% voting_allowed = true unless reason.presence == :not_voting_allowed %>
<% user_voted_for = voted_for?(@budget_investment_votes, investment) %>
<% user_voted_for = voted_for?(investment_votes, investment) %>
<div class="supports">
@@ -13,7 +13,7 @@
<div class="supported">
<%= t("budget.investments.investment.already_supported") %>
</div>
<% elsif @budget.selecting? %>
<% elsif investment.budget.selecting? %>
<%= link_to vote_url,
class: "button button-support small expanded",
@@ -40,7 +40,7 @@
<% if user_voted_for && setting['twitter_handle'] %>
<div class="share-supported">
<%= social_share_button_tag("#{investment.title} #{setting['twitter_hashtag']}", url: budget_investment_url(budget_id: @budget.id, id: investment.id), via: setting['twitter_handle']) %>
<%= social_share_button_tag("#{investment.title} #{setting['twitter_hashtag']}", url: budget_investment_url(budget_id: investment.budget_id, id: investment.id), via: setting['twitter_handle']) %>
</div>
<% end %>
</div>