{% extends "base.html" %} {% load static %} {% block title %} {% if object %}Edit Appointment Request{% else %}New Appointment Request{% endif %} - Appointments {% endblock %} {% block css %} {% endblock %} {% block content %}

{% if object %}Edit Appointment Request{% else %}New Appointment Request{% endif %}

Appointment Request Details
{% csrf_token %}
Patient Information
{{ object.patient }}
{#
#} {# {{ form.patient }}#} {# #} {# {% if form.patient.errors %}#} {#
#} {# {{ form.patient.errors.0 }}#} {#
#} {# {% endif %}#} {#
#}
{{ form.provider }} {% if form.provider.errors %}
{{ form.provider.errors.0 }}
{% endif %}
Appointment Details
{{ form.appointment_type }} {% if form.appointment_type.errors %}
{{ form.appointment_type.errors.0 }}
{% endif %}
{{ form.priority }} {% if form.priority.errors %}
{{ form.priority.errors.0 }}
{% endif %}
{{ form.scheduled_datetime }} {% if form.scheduled_datetime.errors %}
{{ form.scheduled_datetime.errors.0 }}
{% endif %}
{{ form.duration_minutes }} {% if form.duration_minutes.errors %}
{{ form.duration_minutes.errors.0 }}
{% endif %}
Additional Information
{{ form.department }} {% if form.department.errors %}
{{ form.department.errors.0 }}
{% endif %}
{{ form.location }} {% if form.location.errors %}
{{ form.location.errors.0 }}
{% endif %}
{{ form.reason }} {% if form.reason.errors %}
{{ form.reason.errors.0 }}
{% endif %}
{{ form.notes }} {% if form.notes.errors %}
{{ form.notes.errors.0 }}
{% endif %}
Options
{{ form.is_telemedicine }} {% if form.is_telemedicine.errors %}
{{ form.is_telemedicine.errors.0 }}
{% endif %}
{{ form.send_reminders }} {% if form.send_reminders.errors %}
{{ form.send_reminders.errors.0 }}
{% endif %}
Cancel
Help & Guidelines

  • Consultation: Initial patient visit
  • Follow-up: Subsequent visits
  • Procedure: Medical procedures
  • Emergency: Urgent care

  • High: Urgent care needed
  • Medium: Standard priority
  • Low: Routine appointment

Enable for virtual consultations:

  • • Patient must have video capability
  • • Provider must be available online
  • • Suitable for consultations only
{% endblock %} {% block js %} {% endblock %}