mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 03:54:08 +00:00
73 lines
2.1 KiB
Plaintext
73 lines
2.1 KiB
Plaintext
<header class="flex justify-between items-center text-primary font-medium">
|
|
<h1 class="text-xl"><%= t(".accounts") %></h1>
|
|
<div class="flex items-center gap-5">
|
|
<div class="flex items-center gap-2">
|
|
<%= icon(
|
|
"refresh-cw",
|
|
as_button: true,
|
|
size: "sm",
|
|
href: sync_all_accounts_path,
|
|
disabled: Current.family.syncing?,
|
|
frame: :_top
|
|
) %>
|
|
<%= render DS::Link.new(
|
|
text: "New account",
|
|
href: new_account_path(return_to: accounts_path),
|
|
variant: "primary",
|
|
icon: "plus",
|
|
frame: :modal
|
|
) %>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<% if @manual_accounts.empty? && @plaid_items.empty? && @simplefin_items.empty? && @lunchflow_items.empty? && @enable_banking_items.empty? && @coinstats_items.empty? && @coinbase_items.empty? && @mercury_items.empty? && @snaptrade_items.empty? %>
|
|
<%= render "empty" %>
|
|
<% else %>
|
|
<div class="space-y-2">
|
|
<% if @plaid_items.any? %>
|
|
<%= render @plaid_items.sort_by(&:created_at) %>
|
|
<% end %>
|
|
|
|
<% if @simplefin_items.any? %>
|
|
<%= render @simplefin_items.sort_by(&:created_at) %>
|
|
<% end %>
|
|
|
|
<% if @lunchflow_items.any? %>
|
|
<%= render @lunchflow_items.sort_by(&:created_at) %>
|
|
<% end %>
|
|
|
|
<% if @enable_banking_items.any? %>
|
|
<%= render @enable_banking_items.sort_by(&:created_at) %>
|
|
<% end %>
|
|
|
|
<% if @coinstats_items.any? %>
|
|
<%= render @coinstats_items.sort_by(&:created_at) %>
|
|
<% end %>
|
|
|
|
<% if @mercury_items.any? %>
|
|
<%= render @mercury_items.sort_by(&:created_at) %>
|
|
<% end %>
|
|
|
|
<% if @coinbase_items.any? %>
|
|
<%= render @coinbase_items.sort_by(&:created_at) %>
|
|
<% end %>
|
|
|
|
<% if @snaptrade_items.any? %>
|
|
<%= render @snaptrade_items.sort_by(&:created_at) %>
|
|
<% end %>
|
|
|
|
<% if @testprovider_items.any? %>
|
|
<%= render @testprovider_items.sort_by(&:created_at) %>
|
|
<% end %>
|
|
|
|
<% if @manual_accounts.any? %>
|
|
<div id="manual-accounts">
|
|
<%= render "accounts/index/manual_accounts", accounts: @manual_accounts %>
|
|
</div>
|
|
<% else %>
|
|
<div id="manual-accounts"></div>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|