1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-25 08:09:38 +02:00

Basic account listing

This commit is contained in:
Josh Pigford 2024-02-02 11:09:31 -06:00
parent 253ae29da0
commit aef3e70ba0
2 changed files with 15 additions and 7 deletions

View file

@ -1,3 +1,5 @@
class Account < ApplicationRecord
belongs_to :family
scope :depository, -> { where(type: 'Depository') }
end

View file

@ -1,8 +1,14 @@
<div>
<h1 class="text-4xl font-bold">Accounts#index</h1>
<p>Find me in app/views/accounts/index.html.erb</p>
</div>
<% @accounts.each do |account| %>
<%= account.name %>
<% end %>
<h2 class="text-2xl font-semibold font-display">Cash</h2>
<h3 class="mt-1 mb-4 text-sm text-gray-500"><%#= number_to_currency current_family.cash_balance %></h3>
<% current_family.accounts.depository.each do |account| %>
<div class="flex items-center justify-between px-3 py-3 mb-2 bg-white shadow-sm rounded-xl">
<div class="flex items-center text-sm">
<%= account.name %>
</div>
<p class="text-sm text-right">
<span class="block mb-1"><%= number_to_currency account.balance %></span>
</p>
</div>
<% end %>