mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 15:49:39 +02:00
* Fix bug: Loan % doesn't allow exact rate Fixes #1487 Change the step of the interest rate field to 0.005. It's unlikely that we'll see interest rates in smaller increments. * step 0.005 * migration for loan interest rates precision * add new line
26 lines
1 KiB
Text
26 lines
1 KiB
Text
<%# locals: (account:, url:) %>
|
|
|
|
<%= render "accounts/form", account: account, url: url do |form| %>
|
|
<hr class="my-4">
|
|
|
|
<div class="space-y-2">
|
|
<%= form.fields_for :accountable do |loan_form| %>
|
|
<div class="flex items-center gap-2">
|
|
<%= loan_form.number_field :interest_rate,
|
|
label: t("loans.form.interest_rate"),
|
|
placeholder: t("loans.form.interest_rate_placeholder"),
|
|
min: 0,
|
|
step: 0.005 %>
|
|
<%= loan_form.select :rate_type,
|
|
[["Fixed", "fixed"], ["Variable", "variable"], ["Adjustable", "adjustable"]],
|
|
{ label: t("loans.form.rate_type") } %>
|
|
</div>
|
|
|
|
<div class="flex items-center gap-2">
|
|
<%= loan_form.number_field :term_months,
|
|
label: t("loans.form.term_months"),
|
|
placeholder: t("loans.form.term_months_placeholder") %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|