{% extends "base.htm" %} {% block title %}Transactions{% endblock %} {% block content %}

{{ name }}'s Transactions

{{ amount|fmt_points }}

Transfer Points Settings Logout
{% for transaction in transactions %} {% if name == transaction.sender -%} {% else -%} {% endif -%} {% endfor %}
Time Amount Balance Other Purpose
{{ transaction.date }}-{{ transaction.amount }} {{ transaction.sender_balance }} {{ transaction.receiver }}{{ transaction.amount }} {{ transaction.receiver_balance }} {{ transaction.sender }}{{ transaction.purpose }}
{% endblock %}