containers/aws-gcp-migration/aws/src/frontend/templates/index.html [17:377]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {% include 'shared/html_head.html' %} {% include 'shared/platform_banner.html' %} {% include 'shared/navigation.html' %}
{% if message != None %}
check_circle
{{ message }}
close
{% endif %}
Overview

Checking Account

Current Balance

{{ format_currency(balance) }}
Deposit Funds
get_app
Send Payment
forward

Transaction History

{% if history is none %}

Error: Could Not Load Transactions

{% elif history|length == 0 %}

No Transactions Found

{% else %} {% for t in history %} {% if t.toAccountNum == account_id %} {% elif t.fromAccountNum == account_id %} {% endif %} {% endfor %}
Date Type Account Label Amount

{{ format_timestamp_month(t.timestamp) }} {{ format_timestamp_day(t.timestamp) }}

Credit {% if t.accountLabel != None %} {{ t.accountLabel }} {% else %} None {% endif %} +{{ format_currency(t.amount) }} Debit {% if t.accountLabel != None %} {{ t.accountLabel }} {% else %} None {% endif %} -{{ format_currency(t.amount) }}
{% endif %}
{% include 'shared/footer.html' %} {% include 'shared/scripts.html' %} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - containers/aws-gcp-migration/gcp/src/frontend/templates/index.html [17:377]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {% include 'shared/html_head.html' %} {% include 'shared/platform_banner.html' %} {% include 'shared/navigation.html' %}
{% if message != None %}
check_circle
{{ message }}
close
{% endif %}
Overview

Checking Account

Current Balance

{{ format_currency(balance) }}
Deposit Funds
get_app
Send Payment
forward

Transaction History

{% if history is none %}

Error: Could Not Load Transactions

{% elif history|length == 0 %}

No Transactions Found

{% else %} {% for t in history %} {% if t.toAccountNum == account_id %} {% elif t.fromAccountNum == account_id %} {% endif %} {% endfor %}
Date Type Account Label Amount

{{ format_timestamp_month(t.timestamp) }} {{ format_timestamp_day(t.timestamp) }}

Credit {% if t.accountLabel != None %} {{ t.accountLabel }} {% else %} None {% endif %} +{{ format_currency(t.amount) }} Debit {% if t.accountLabel != None %} {{ t.accountLabel }} {% else %} None {% endif %} -{{ format_currency(t.amount) }}
{% endif %}
{% include 'shared/footer.html' %} {% include 'shared/scripts.html' %} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -