{% extends 'bootstrap/base.html' %} {% block html %} {% block head %} {% block title %} Smart Office IoT application {% endblock %} {% block styles %} {{ super() }} {% endblock %} {% endblock %} {% block body %} {% block navbar %} {% endblock %} {% block content %}

Smart Office

{{ patient_details.first_name }} {{ patient_details.last_name }}

Age: {{ patient_details.age }}

Email: {{ patient_details.email }}

Dashboard

Appointments made for Doctor(s) {% if patient_appointments_list %} {% for value_appointments_list in patient_appointments_list %}
  • Date: {{ value_appointments_list.event_date }} Time: {{ value_appointments_list.event_time }} Delete
  • {% endfor %} {% else %}
  • No Appointments found
  • {% endif %}
    Medical Records {% if medical_records %} {% for value_medical_records in medical_records %}
  • {{ value_medical_records.description }}
  • {% endfor %} {% else %}
  • No Medical records found
  • {% endif %}
    {% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% endblock %} {% endblock %}