mirror of
https://github.com/we-promise/sure.git
synced 2026-04-16 18:44:13 +00:00
Add Account type investment form (#343)
* Add Account type investment form * Move subtypes to Account::Investment * Linting
This commit is contained in:
committed by
GitHub
parent
2ccb52056d
commit
db478e5fbd
@@ -1,3 +1,15 @@
|
||||
class Account::Investment < ApplicationRecord
|
||||
include Accountable
|
||||
|
||||
SUBTYPES = [
|
||||
[ "Brokerage", "brokerage" ],
|
||||
[ "Pension", "pension" ],
|
||||
[ "Retirement", "retirement" ],
|
||||
[ "401(k)", "401k" ],
|
||||
[ "529 plan", "529_plan" ],
|
||||
[ "Health Savings Account", "hsa" ],
|
||||
[ "Mutual Fund", "mutual_fund" ],
|
||||
[ "Roth IRA", "roth_ira" ],
|
||||
[ "Roth 401k", "roth_401k" ]
|
||||
].freeze
|
||||
end
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
<div class="relative p-4 border border-gray-100 bg-offwhite rounded-xl focus-within:bg-white focus-within:shadow focus-within:opacity-100">
|
||||
<label for="account_name" class="block text-sm font-medium opacity-50 focus-within:opacity-100">Type</label>
|
||||
<%= f.select :subtype, options_for_select(Account::Investment::SUBTYPES, selected: ""), {}, class: "block w-full p-0 mt-1 bg-transparent border-none focus:outline-none focus:ring-0" %>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user