This way it's still possible to access the "evaluation finished" filter in the valuation investments index.
19 lines
479 B
Plaintext
19 lines
479 B
Plaintext
<tr id="<%= dom_id(budget) %>" class="budget">
|
|
<td>
|
|
<%= budget.name %>
|
|
</td>
|
|
<td>
|
|
<%= budget.current_phase.name %>
|
|
</td>
|
|
<td class="investments-count">
|
|
<%= valuation_open_investments_count %>
|
|
</td>
|
|
<td>
|
|
<% if investments.any? %>
|
|
<%= link_to t("valuation.budgets.index.evaluate"),
|
|
valuation_budget_budget_investments_path(budget_id: budget.id),
|
|
class: "button hollow expanded" %>
|
|
<% end %>
|
|
</td>
|
|
</tr>
|