It has more sense to show the count of the investments the valuator is going to find in the investments valuation page.
17 lines
414 B
Plaintext
17 lines
414 B
Plaintext
<tr id="<%= dom_id(budget) %>" class="budget">
|
|
<td>
|
|
<%= budget.name %>
|
|
</td>
|
|
<td>
|
|
<%= budget.current_phase.name %>
|
|
</td>
|
|
<td class="investments-count">
|
|
<%= investments_count %>
|
|
</td>
|
|
<td>
|
|
<%= link_to t("valuation.budgets.index.evaluate"),
|
|
valuation_budget_budget_investments_path(budget_id: budget.id),
|
|
class: "button hollow expanded" %>
|
|
</td>
|
|
</tr>
|