mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 15:49:39 +02:00
Add Account type investment form (#343)
* Add Account type investment form * Move subtypes to Account::Investment * Linting
This commit is contained in:
parent
2ccb52056d
commit
db478e5fbd
2 changed files with 16 additions and 0 deletions
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue