{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load i18n %} {% load django_ledger %} {% block view_content %}
{% trans 'Date' %}: {{ receipt.receipt_date }}
{% trans 'Type' %}: {{ receipt.get_receipt_type_display }}
{# CUSTOMER INFO #} {% if receipt.customer_model %}{% trans 'Customer' %}: {{ receipt.customer_model.customer_name }} · {% trans 'Report' %}
{% endif %} {# VENDOR INFO #} {% if receipt.vendor_model %}{% trans 'Vendor' %}: {{ receipt.vendor_model.vendor_name }} · {% trans 'Report' %}
{% endif %}{% trans 'Ledger' %}: {{ receipt.ledger_model.name }}
| {% trans 'Date/Time' %} | {% trans 'Journal Entry' %} | {% trans 'Account' %} | {% trans 'Debit' %} | {% trans 'Credit' %} | {% trans 'Unit' %} |
|---|---|---|---|---|---|
| {{ tx.journal_entry.timestamp }} | {{ tx.journal_entry.description|default:'—' }} | {{ tx.account.code }} - {{ tx.account.name }} | {% currency_symbol %}{% if tx.is_debit %} {{ tx.amount | currency_format }}{% endif %} | {% currency_symbol %}{% if tx.is_credit %} {{ tx.amount | currency_format }}{% endif %} | {{ tx.journal_entry.entity_unit.name|default:'—' }} |
{% trans 'No transactions found for this receipt.' %}
{% endif %} {% if import_job %}{% trans 'Imported From' %}: {% trans 'Bank Feed Job' %} — {{ import_job.description|default:import_job.uuid }}
{% endif %}