{% extends "root.html" %} {% block title %}member {{member.username}}{% endblock %} {% block content %}

{{member.username}}

Info

Active: {{member.active}}
Type: {{member.type}}
Months due: {{member.get_months_due()}}
Amount due: {{amount_due}}

Transfers...

{% set fattycount = transfer.amount/(config['MEMBERSHIP_FEES']['fatty'] * 100) %} {% set starvingcount = transfer.amount/(config['MEMBERSHIP_FEES']['starving'] * 100) %} This is a one-time payment.
This is a {{fattycount|int}}-time payment. (fatty)
This is a {{starvingcount|int}}-time payment. (starving)
This is a N-time payment. (superfatty?)
{% endblock %}