Files
grecia/app/views/users/_budget_investment.html.erb
Javi Martín 0e2434c094 Extract commponent to render user investment actions
This way it'll be easier to organize code related to it.
2024-11-07 15:18:37 +01:00

9 lines
290 B
Plaintext

<tr id="budget_investment_<%= budget_investment.id %>">
<td>
<%= link_to budget_investment.title, budget_investment_path(budget_investment.budget, budget_investment) %>
</td>
<td>
<%= render Users::BudgetInvestmentTableActionsComponent.new(budget_investment) %>
</td>
</tr>