mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
* Remove ScrollFocusable * Consolidate and simplify account pages * Lint fixes * Fix tab param initialization * Remove stale files * Remove stale route, make accountable routes clearer
54 lines
1.6 KiB
Text
54 lines
1.6 KiB
Text
<%# locals: (account:) %>
|
|
|
|
<div class="grid grid-cols-3 gap-2">
|
|
<%= summary_card title: t(".original_principal") do %>
|
|
<%= format_money account.loan.original_balance %>
|
|
<% end %>
|
|
|
|
<%= summary_card title: t(".remaining_principal") do %>
|
|
<%= format_money account.balance_money %>
|
|
<% end %>
|
|
|
|
<%= summary_card title: t(".interest_rate") do %>
|
|
<% if account.loan.interest_rate.present? %>
|
|
<%= number_to_percentage(account.loan.interest_rate, precision: 3) %>
|
|
<% else %>
|
|
<%= t(".unknown") %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<%= summary_card title: t(".monthly_payment") do %>
|
|
<% if account.loan.rate_type.present? && account.loan.rate_type != 'fixed' %>
|
|
<%= t(".not_applicable") %>
|
|
<% elsif account.loan.rate_type == 'fixed' && account.loan.monthly_payment.present? %>
|
|
<%= format_money(account.loan.monthly_payment) %>
|
|
<% else %>
|
|
<%= t(".unknown") %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<%= summary_card title: t(".term") do %>
|
|
<% if account.loan.term_months.present? %>
|
|
<% if account.loan.term_months < 12 %>
|
|
<%= pluralize(account.loan.term_months, "month") %>
|
|
<% else %>
|
|
<%= pluralize(account.loan.term_months / 12, "year") %>
|
|
<% end %>
|
|
<% else %>
|
|
<%= t(".unknown") %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<%= summary_card title: t(".type") do %>
|
|
<%= account.loan.rate_type&.titleize || t(".unknown") %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="flex justify-center py-8">
|
|
<%= render LinkComponent.new(
|
|
text: "Edit loan details",
|
|
variant: "ghost",
|
|
href: edit_loan_path(account),
|
|
frame: :modal
|
|
) %>
|
|
</div>
|