{% extends "base.html" %} {% load static %} {% block title %}Medical Bills - {{ block.super }}{% endblock %} {% block content %}

Medical Bills

Total Bills

{{ stats.total_bills|default:0 }}

Total Amount

ê{{ stats.total_amount|default:0|floatformat:'2g' }}

Total Paid

ê{{ stats.total_paid|floatformat:'2g' }}

Outstanding

ê{{ stats.outstanding_amount|floatformat:'2g' }}

Search & Filter

Medical Bills {{ page_obj.paginator.count }} total

{% for bill in page_obj %} {% empty %} {% endfor %}
Bill Number Patient Date Total Amount Paid Amount Balance Status Due Date Actions
{{ bill.bill_number }}
{{ bill.patient.get_full_name }}
MRN: {{ bill.patient.mrn }}
{{ bill.bill_date|date:"M d, Y" }} ê{{ bill.total_amount|floatformat:'2g' }} ê{{ bill.paid_amount|floatformat:'2g' }} ê{{ bill.balance_amount|floatformat:'2g' }} {% if bill.status == 'DRAFT' %} Draft {% elif bill.status == 'PENDING' %} Pending {% elif bill.status == 'SUBMITTED' %} Submitted {% elif bill.status == 'PARTIAL_PAID' %} Partially Paid {% elif bill.status == 'PAID' %} Paid {% elif bill.status == 'OVERDUE' %} Overdue {% elif bill.status == 'COLLECTIONS' %} Collections {% elif bill.status == 'WRITTEN_OFF' %} Written Off {% elif bill.status == 'CANCELLED' %} Cancelled {% endif %} {% if bill.due_date %} {{ bill.due_date|date:"M d, Y" }} {% else %} - {% endif %}
{% if bill.status == 'DRAFT' %} {% endif %}
No bills found

No medical bills match your current filters.

Create First Bill
{% if is_paginated %} {% include 'partial/pagination.html' %} {% endif %}
{% endblock %}