{% extends 'hospital/patient_base.html' %}
{% load static %}
{% block content %}
A simple, clean, and responsive HTML invoice template
{%if is_discharged%}
Hospital Management
|
Admit Date: {{admitDate}}
Release Date: {{releaseDate}}
Days Spent: {{daySpent}}
|
|
Patient Name : {{patientName}}
Patient Mobile : {{mobile}}
Patient Addres : {{address}}
|
Doctor Name :
{{assignedDoctorName}}
|
|
Disease and Symptoms
|
|
{{symptoms}}
|
Item
|
Price
|
Room Charge of {{daySpent}} Days
|
{{roomCharge}}
|
Doctor Fee
|
{{doctorFee}}
|
Medicine Cost
|
{{medicineCost}}
|
Other Charge
|
{{OtherCharge}}
|
|
Total Rupees : {{total}}
|
{%else%}
You Are Not Discharged By Hospital !
Your Treatment Is Going On !
When You Will Be Discahrged. You Can Download Invoice.
{%endif%}
{% endblock content %}