{% extends "base.html" %} {% from "_helpers.html" import format_currency, render_pagination %} {% block content %}
Type | Amount | Date |
---|---|---|
{{ tx.type }} {% if not tx.finished %}(processing){% endif %} {% if tx.type == 'transfer' and tx.amount > 0 %} from {{ tx.related_user }} {% elif tx.type == 'transfer' and tx.amount < 0 %} to {{ tx.related }} {% elif tx.type == 'purchase' and tx.product_id %} of product {{ tx.product_id }} {% endif %} | {{ format_currency(tx.amount) }} | {{ tx.created }} |
Nothing to see here... |