{% extends 'base.html' %} {% block content %}
Name: {{ supplier.name }}
Email: {{ supplier.email }}
Company: {{ supplier.company_name or '-' }}
Phone: {{ supplier.phone or '-' }}
| Date | Description | Type | Debit | Credit | Balance |
|---|---|---|---|---|---|
| {{ entry.date.strftime('%Y-%m-%d') }} | {{ entry.description }} | {{ entry.type|capitalize }} | {{ entry.debit|currency if entry.debit > 0 else '-' }} | {{ entry.credit|currency if entry.credit > 0 else '-' }} | {{ entry.balance|currency }} |
| No entries found. | |||||