<%# locals: (account:, title: nil, tooltip: nil, **args) %> <% period = Period.from_param(params[:period]) %> <% default_value_title = account.asset? ? t(".balance") : t(".owed") %>
<%= tag.p title || default_value_title, class: "text-sm font-medium text-gray-500" %> <%= tooltip %>
<%= tag.p format_money(account.balance_money), class: "text-gray-900 text-3xl font-medium" %>
<%= form_with url: request.path, method: :get, data: { controller: "auto-submit-form" } do |form| %> <%= period_select form: form, selected: period.name %> <% end %>
<%= turbo_frame_tag dom_id(account, :chart_details), src: chart_account_path(account, period: period.name) do %> <%= render "accounts/chart_loader" %> <% end %>