2024-11-04 20:27:31 -05:00
|
|
|
<%= render layout: "accounts/new/container", locals: { title: t(".title") } do %>
|
|
|
|
<div class="text-sm">
|
|
|
|
<%= render "account_type", accountable: Depository.new %>
|
|
|
|
<%= render "account_type", accountable: Investment.new %>
|
|
|
|
<%= render "account_type", accountable: Crypto.new %>
|
|
|
|
<%= render "account_type", accountable: Property.new %>
|
|
|
|
<%= render "account_type", accountable: Vehicle.new %>
|
|
|
|
<%= render "account_type", accountable: CreditCard.new %>
|
|
|
|
<%= render "account_type", accountable: Loan.new %>
|
|
|
|
<%= render "account_type", accountable: OtherAsset.new %>
|
|
|
|
<%= render "account_type", accountable: OtherLiability.new %>
|
2024-10-18 14:37:42 -04:00
|
|
|
|
2024-11-04 20:27:31 -05:00
|
|
|
<% unless params[:return_to].present? %>
|
|
|
|
<%= button_to imports_path(import: { type: "AccountImport" }),
|
|
|
|
data: { turbo_frame: :_top },
|
|
|
|
class: "flex items-center gap-4 w-full text-center focus:outline-none focus:bg-alpha-black-25 hover:bg-alpha-black-25 border border-transparent block px-2 rounded-lg p-2" do %>
|
|
|
|
<span style="background-color: color-mix(in srgb, #F79009 10%, white);" class="flex w-8 h-8 shrink-0 grow-0 items-center justify-center rounded-lg border border-alpha-black-25">
|
|
|
|
<%= lucide_icon("download", style: "color: #F79009", class: "w-5 h-5") %>
|
|
|
|
</span>
|
|
|
|
<%= t("accounts.new.import_accounts") %>
|
|
|
|
<% end %>
|
2024-02-08 10:46:05 -06:00
|
|
|
<% end %>
|
2024-02-09 20:21:19 -05:00
|
|
|
</div>
|
2024-04-09 16:08:58 +04:00
|
|
|
<% end %>
|