Files
grecia/app/components/users/budget_investment_table_actions_component.html.erb
2024-11-08 12:19:39 +01:00

10 lines
203 B
Plaintext

<div class="user-budget-investment-table-actions">
<% if can? :update, investment %>
<%= edit_link %>
<% end %>
<% if can? :destroy, investment %>
<%= destroy_button %>
<% end %>
</div>