mirror of
https://github.com/we-promise/sure.git
synced 2026-04-23 05:54:08 +00:00
* Fixed crypto and loan add menus * Changed unspecified crypto account type to none for consistency * Added default add message for loan subtype * Made the short form of non-mortgage loans in loans.rb match the long form * Edited the crypto tooltip to be country generic * Update config/locales/views/loans/en.yml Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Signed-off-by: Geoffrey <79559478+CYBRXT@users.noreply.github.com> * Update app/views/loans/_form.html.erb Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Signed-off-by: Geoffrey <79559478+CYBRXT@users.noreply.github.com> * Following Dosu's comment on my issue for consistency --------- Signed-off-by: Geoffrey <79559478+CYBRXT@users.noreply.github.com> Co-authored-by: Geoffrey <geoffrey@github.worker> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
40 lines
1.6 KiB
Plaintext
40 lines
1.6 KiB
Plaintext
<%# locals: (account:, url:) %>
|
|
|
|
<%= render "accounts/form", account: account, url: url do |form| %>
|
|
<%= render "shared/ruler", classes: "my-4" %>
|
|
|
|
<div class="space-y-2">
|
|
<%= form.fields_for :accountable do |loan_form| %>
|
|
<div class="flex items-center gap-2">
|
|
<%= loan_form.money_field :initial_balance,
|
|
label: t("loans.form.initial_balance"),
|
|
default_currency: Current.family.currency,
|
|
required: true %>
|
|
</div>
|
|
|
|
<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>
|
|
|
|
<div>
|
|
<%= loan_form.select :subtype,
|
|
Loan::SUBTYPES.map { |k, v| [v[:long], k] },
|
|
{ label: true, prompt: t("loans.form.subtype_prompt"), include_blank: t("loans.form.none") } %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|