{% extends 'transactions/extends/layout.html' %} {% load static %} {% load humanize %} {% block content %} {% block scripts %} {% endblock %}
{% csrf_token %}

{{ bran.name }} General Ledger for the period {{ start_date }} to {{ end_date }}

{% for gl in general_ledger %} {% endfor %}
# Txn Reference number Date Transaction Ledger (Account) Amount(debit) Amount(Credit) Description
{{ forloop.counter }} {{ gl.txno }} {{ gl.reference }} {{ gl.tx_date|date:"d/m/Y" }} {{ gl.transaction_type }} {{ gl.account_dr.member.member_names|default:gl.account_dr.name }} {{ gl.reporting_amount|intcomma }} {{ gl.narration }}
{{ gl.txno }} {{ gl.reference }} {{ gl.tx_date|date:"d/m/Y" }} {{ gl.action }} {{ gl.account_cr.member.member_names|default:gl.account_cr.name }} {{ gl.reporting_amount|intcomma }} {{ gl.narration }}
{% if general_ledger.has_other_pages %}
{% endif %}
{% endblock %} {% block javascript %} {% endblock %}