{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load i18n %} {% load django_ledger %} {% block view_content %}
{% include 'django_ledger/customer/includes/card_customer.html' with customer=customer %}

{% icon 'mdi:receipt-text' 24 %} {% trans 'Receipts' %}

{% if receipts %}
{% for receipt in receipts %} {% endfor %}
{% trans 'Receipt Number' %} {% trans 'Date' %} {% trans 'Type' %} {% trans 'Actions' %}
{{ receipt.receipt_number }} {{ receipt.receipt_date }} {{ receipt.receipt_type|title }} {% if receipt.get_import_job_url %} {% trans 'Bank Feed Job' %} {% endif %}
{% else %}

{% trans 'No receipts found for this customer.' %}

{% endif %}

{% icon 'mdi:file-document-edit-outline' 24 %} {% trans 'Invoices' %}

{% if invoices %}
{% for invoice in invoices %} {% endfor %}
{% trans 'Invoice Number' %} {% trans 'Status' %}
{{ invoice.invoice_number }} {{ invoice.get_invoice_status_display }}
{% else %}

{% trans 'No invoices found for this customer.' %}

{% endif %}
{% endblock %}