1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 13:19:39 +02:00

Rough-in on account show pages

This commit is contained in:
Josh Pigford 2024-02-10 19:39:18 -06:00
parent 997bb52d89
commit 4d5d35b277
4 changed files with 6 additions and 7 deletions

View file

@ -9,6 +9,7 @@ class AccountsController < ApplicationController
end
def show
@account = Current.family.accounts.find(params[:id])
end
def create

View file

@ -12,7 +12,7 @@
</summary>
<% accounts.each do |account| %>
<div class="flex items-center w-full gap-3 px-2 py-3 mb-1">
<%= link_to account_path(account), class: "flex items-center w-full gap-3 px-2 py-3 mb-1 hover:bg-[#f2f2f2] rounded-[10px]" do %>
<div>
<p class="font-medium"><%= account.name %></p>
<% if account.subtype %>
@ -20,7 +20,7 @@
<% end %>
</div>
<p class="ml-auto font-medium"><%= format_currency account.converted_balance %></p>
</div>
<% end %>
<% end %>
<%= link_to new_account_path(step: 'method', type: type.name.demodulize), class: "flex items-center gap-4 px-2 py-3 mb-1 text-[#737373] text-sm font-medium rounded-[10px] hover:bg-[#f2f2f2]", data: { turbo_frame: "modal" } do %>

View file

@ -1,4 +1,2 @@
<div>
<h1 class="font-bold text-4xl">Accounts#show</h1>
<p>Find me in app/views/accounts/show.html.erb</p>
</div>
<h2 class="text-2xl font-semibold font-display"><%= @account.name %></h2>

View file

@ -72,7 +72,7 @@
<%= t('.accounts') %>
<% end %>
<%= link_to new_account_path, class: 'block hover:bg-gray-100 p-2 text-sm font-semibold text-gray-900 flex items-center rounded', title: t('.new_account'), data: { turbo_frame: "modal" } do %>
<%= inline_svg_tag('icon-add.svg', class: 'text-gray-500 fill-current') %>
<%= lucide_icon("plus", class: "w-5 h-5 text-gray-500") %>
<% end %>
</div>