{% extends "base.html" %} {% block title %}Doctors - Vera Medical CRM{% endblock %} {% block content %}

Doctors

Medical professionals performing assessments

Total: {{ doctors|length }}
Add Doctor
{% if request.args.get('search') %} Clear {% endif %}
{% if doctors %}
{% for doctor in doctors %}

{% if doctor['prefix'] %}{{ doctor['prefix'] }} {% endif %}{% if doctor['first_name'] %}{{ doctor['first_name'] }} {% endif %}{% if doctor['last_name'] %}{{ doctor['last_name'] }}{% else %}{{ doctor['name'] }}{% endif %}

{% if doctor['specialty'] %}

{{ doctor['specialty'] }}

{% else %}

Specialty not specified

{% endif %}
{% if doctor['clinic_city'] %}
{{ doctor['clinic_city'] }}{% if doctor['clinic_province'] %}, {{ doctor['clinic_province'] }}{% endif %}
{% elif doctor['mailing_city'] %}
{{ doctor['mailing_city'] }}{% if doctor['mailing_province'] %}, {{ doctor['mailing_province'] }}{% endif %}
{% elif doctor['city'] %}
{{ doctor['city'] }}
{% endif %} {% if doctor['phone'] %}
{{ doctor['phone'] }}
{% endif %} {% if doctor['cell_phone'] %}
{{ doctor['cell_phone'] }}
{% endif %} {% if doctor['email'] %}
{{ doctor['email'] }}
{% endif %}
{% if doctor['notes'] %}

{{ doctor['notes'] }}

{% endif %}
Edit
{% endfor %}
{% else %}

No Doctors Found

Start by adding your first doctor

Add First Doctor
{% endif %} {% endblock %}