{% load static %}
| Line # | Description | Service Code | Quantity | Unit Price | Total Amount |
|---|---|---|---|---|---|
| {{ item.line_number }} |
{{ item.description }}
{% if item.notes %}
{{ item.notes }} {% endif %} |
{{ item.service_code|default:"-" }} | {{ item.quantity }} | ${{ item.unit_price|floatformat:2 }} | ${{ item.total_amount|floatformat:2 }} |
| No line items found for this bill | |||||
| Payment Date | Payment Method | Reference Number | Amount | Notes |
|---|---|---|---|---|
| {{ payment.payment_date|date:"M d, Y" }} | {{ payment.get_payment_method_display }} | {{ payment.reference_number|default:"-" }} | ${{ payment.amount|floatformat:2 }} | {{ payment.notes|default:"-" }} |
| Claim Number | Insurance Provider | Submission Date | Claim Amount | Status | Response Date |
|---|---|---|---|---|---|
| {{ claim.claim_number }} | {{ claim.insurance_provider.name }} | {{ claim.submission_date|date:"M d, Y" }} | ${{ claim.claim_amount|floatformat:2 }} | {{ claim.get_status_display }} | {{ claim.response_date|date:"M d, Y"|default:"-" }} |