{% extends 'base.html' %} {% block content %}
| ID | Employee | Date | Type | Amount | Account | Description | Status |
|---|---|---|---|---|---|---|---|
| #{{ payment.id }} |
{{ payment.employee.full_name }} {{ payment.employee.employee_id }} |
{{ payment.date|date_format }} | {% if payment.payment_type == 'salary' %} 💰 Salary {% elif payment.payment_type == 'bonus' %} 🎁 Bonus {% elif payment.payment_type == 'advance' %} 💳 Advance {% elif payment.payment_type == 'expense_reimbursement' %} 📄 Reimbursement {% else %} {{ payment.payment_type|title }} {% endif %} | {{ payment.amount|currency }} | {{ payment.account.name }} | {% if payment.description %} {{ payment.description[:50] }}{% if payment.description|length > 50 %}...{% endif %} {% else %} - {% endif %} | {% if payment.status == 'paid' %} ✅ Paid {% elif payment.status == 'pending' %} ⏳ Pending {% else %} ❌ {{ payment.status|title }} {% endif %} |
No payments yet
Process your first payment above
💰 Payment Types: Salary, Bonus, Advance, Expense Reimbursement
🏦 Account Selection: Choose the account to withdraw payment from
📊 Automatic Tracking: All payments are recorded in your account ledger
📈 Reporting: Track payment history for financial analysis