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

{% 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.get_receipt_type_display|title }} {% if receipt.get_import_job_url %} {% trans 'Bank Feed Job' %} {% endif %}
{% else %}

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

{% endif %}

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

{% if bills %}
{% for bill in bills %} {% endfor %}
{% trans 'Bill Number' %} {% trans 'Status' %}
{{ bill.bill_number }} {{ bill.get_bill_status_display }}
{% else %}

{% trans 'No bills found for this vendor.' %}

{% endif %}
{% endblock %}