<%- include("../../../src/web/views/partials/layout-top", { title }) %>

<%= config.banking.label %>

Review balances, transfer funds, and track your transaction history.

<% if (config.currency.icon) { %> Currency icon <% } %> <%= config.currency.name %>

Account snapshot

Current balance <%= userStats.balance %>
Total earned <%= userStats.totalEarned %>
Total spent <%= userStats.totalSpent %>
Sent to others <%= userStats.totalSent %>
Received from others <%= userStats.totalReceived %>

Transfer to another user

<%= config.communityFunds.plural %>

Support shared community goals with direct deposits.

<% if (!funds.length) { %>

No <%= config.communityFunds.plural.toLowerCase() %> are active right now.

<% } else { %>
<% funds.forEach((fund) => { %>
<%= fund.name %> <%= fund.current_amount %>/<%= fund.target_amount %>
<%= fund.description || '' %>
<% }) %>
<% } %>

Transaction history

All account activity with UUID records.

<% transactions.forEach((tx) => { %> <% const fromName = tx.from_name || 'System'; %> <% const toName = tx.to_name || 'System'; %> <% }) %>
UUID Type Amount From To Note Date
<%= tx.type %> <%= tx.amount %> <%= fromName %> <%= toName %> <% if (tx.activity_reward) { %>
<%= tx.note_display %> <% if (tx.activity_reward.hourStart && tx.activity_reward.hourEnd) { %>
<%= new Date(tx.activity_reward.hourStart).toLocaleString() %> - <%= new Date(tx.activity_reward.hourEnd).toLocaleString() %>
<% } %>
    <% tx.activity_reward.rewards.forEach((reward) => { %>
  • <%= reward.label %>: <%= reward.amount %> <% if (reward.hits > 0) { %> (<%= reward.hits %> events)<% } %> <% if (reward.minutes > 0) { %> (<%= reward.minutes %> min)<% } %>
  • <% }) %>
<% } else { %> <%= tx.note_display || tx.note || '-' %> <% } %>
<%= new Date(tx.created_at).toLocaleString() %>
Page 1 of 1
<%- include("../../../src/web/views/partials/layout-bottom") %>