{% extends "HealthCentre/layout.html" %} {% block title %} IITJ Health Centre {% endblock%} {% block bodytag %} {% load static %} {% endblock %} {% block body %} LOGOUT

Your Prescriptions




{% if successPrescriptionMessage %} {% endif %}
{% for prescription in user %} {% if not prescription.isCompleted %}
{% csrf_token %}
Prescription

{{ prescription.patient.name }}




Patient's Symptoms

{{ prescription.symptoms }}

Contact Number : {{ prescription.patient.contactNumber }} Email : {{ prescription.patient.email }} Address : {{ prescription.patient.address }}

{% else %}
Completed Prescription of Patient

{{ prescription.patient.name }}


{{ prescription.prescriptionText }}

Patient's Symptoms

{{ prescription.symptoms }}

Contact Number : {{ prescription.patient.contactNumber }} Email : {{ prescription.patient.email }} Address : {{ prescription.patient.address }}

{% endif %} {% empty %}

You have no prescriptions right now.

{% endfor %}

{% endblock %}