{% extends 'extends/layout.html' %} {% load static %} {% load humanize %} {% block content %} {% block scripts %} {% endblock %}
{# ++++++++++++++++++++++++++++++++++++++++ Editing the transaction type +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++#} {# ++++++++++++++++++++++++++++++++++++++++ Editing the transaction type +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++#}
{% for acc_type in account_types %}
{% if 'add_transaction_charges' in user_perms %}
{% endif %}
{% if acc_type.deposit_charge_vary %}
Currently using varying charges
{% else %}
Currently using a flat charge
{% endif %} {% for charge in transactions_charges %} {% if charge.account_type == acc_type and charge.charge_type == 'd' %} {% if charge.charge_type == 'd' %} {% if charge.is_charge_percentage %} {% else %} {% endif %} {% endif %} {% endif %} {% endfor %}
S/N Minimum Maximum Charge Charge measure Actions
{{ forloop.counter }} {{ charge.start | intcomma }} {{ charge.end | intcomma }} {{ charge.charge | intcomma }}PercentageAmount {% if 'edit_transaction_charges' in user_perms %} {% endif %} {% if 'add_transaction_charges' in user_perms %} {% endif %}
{% if acc_type.withdraw_charge_vary %}
Currently using varying charges
{% else %}
Currently using a flat charge
{% endif %} {% for charge in transactions_charges %} {% if charge.account_type == acc_type and charge.charge_type == 'w' %} {% if charge.charge_type == 'w' %} {% if charge.is_charge_percentage %} {% else %} {% endif %} {% endif %} {% endif %} {% endfor %}
S/N Minimum Maximum Charge Charge measure Actions
{{ forloop.counter }} {{ charge.start }} {{ charge.end }} {{ charge.charge }}PercentageAmount
{% if acc_type.transfer_charge_vary %}
Currently using varrying charges
{% else %}
Currently using a flat charge
{% endif %} {% for charge in transactions_charges %} {% if charge.account_type == acc_type and charge.charge_type == 't' %} {% if charge.charge_type == 't' %} {% if charge.is_charge_percentage %} {% else %} {% endif %} {% endif %} {% endif %} {% endfor %}
S/N Minimum Maximum Charge Charge measure Actions
{{ forloop.counter }} {{ charge.start }} {{ charge.end }} {{ charge.charge }}PercentageAmount
{% endfor %}
{% endblock %}