{% if PHARMACY_SUPER_ROLE in roles or PHARMACIST_ROLE in roles %}
{% include "edc_pharmacy/central_home.html" %}
{% include "edc_pharmacy/site_home.html" %}
{% endif %}
{% if SITE_PHARMACIST_ROLE in roles %}
{% include "edc_pharmacy/site_home.html" %}
{% endif %}
{% if PHARMACY_SUPER_ROLE not in roles and PHARMACIST_ROLE not in roles and SITE_PHARMACIST_ROLE not in roles %}
{% if CLINICIAN_ROLE in roles or CLINICIAN_SUPER_ROLE in roles%}
{% include "edc_pharmacy/clinic_home.html" %}
{% endif %}
{% endif %}