{% extends 'base.html' %} {% load static %} {% block title %}Confirm Appointment{% endblock %} {% block content %}

Confirm Appointment

Appointment Details

Patient:
{{ appointment.patient.first_name }} {{ appointment.patient.last_name }}
Patient ID:
{{ appointment.patient.patient_id }}
Phone:
{{ appointment.patient.phone_number|default:"Not provided" }}
Email:
{{ appointment.patient.email|default:"Not provided" }}
Date:
{{ appointment.appointment_date|date:"M d, Y" }}
Time:
{{ appointment.appointment_time|time:"g:i A" }}
Provider:
{{ appointment.provider.first_name }} {{ appointment.provider.last_name }}
Department:
{{ appointment.department.name }}
Type:
{{ appointment.appointment_type.name }}
{% if appointment.notes %}
Appointment Notes:

{{ appointment.notes }}

{% endif %}

Confirmation Details

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% csrf_token %}
{% if form.confirmation_method.errors %}
{{ form.confirmation_method.errors.0 }}
{% endif %}
{% if form.confirmed_by.errors %}
{{ form.confirmed_by.errors.0 }}
{% endif %}
{% if form.contact_verified.errors %}
{{ form.contact_verified.errors.0 }}
{% endif %}
{% if form.insurance_verified.errors %}
{{ form.insurance_verified.errors.0 }}
{% endif %}
{% if form.instructions_given.errors %}
{{ form.instructions_given.errors.0 }}
{% endif %}
{% if form.confirmation_notes.errors %}
{{ form.confirmation_notes.errors.0 }}
{% endif %}
Go Back

Pre-appointment Checklist

Patient Preparation:
  • Arrive 15 minutes early for check-in
  • Bring valid photo ID
  • Bring insurance cards
  • Bring list of current medications
  • Complete any required forms
Special Instructions:
    {% if appointment.appointment_type.requires_fasting %}
  • Fasting required - no food or drink 8 hours before appointment
  • {% endif %} {% if appointment.appointment_type.requires_preparation %}
  • Special preparation required - see appointment type instructions
  • {% endif %}
  • Wear comfortable, loose-fitting clothing
  • Arrange transportation if sedation will be used
  • Bring a list of questions for the provider
{% endblock %} {% block js %} {% endblock %}