{% include "portal/partial/_nav_icon.html.twig"
with {
url: web_root~"/portal/patient/onsitedocuments?pid="~patientID|attr_url
, icon: "file"
, navText: "Clinical Documents"|xl
, localLink: false
, id: "documents-go"
} %}
{% if allow_portal_appointments %}
{% include "portal/partial/_nav_icon.html.twig"
with {
url: "appointmentcard"|attr_url
, icon: "calendar-check"
, navText: "Appointments"|xl
, id: "appointments-go"
} %}
{% endif %}
{% if portal_two_payments %}
{% include "portal/partial/_nav_icon.html.twig"
with {
url: "paymentcard"|attr_url
, icon: "wallet"
, navText: "Make Payment"|xl
, id: "payments-go"
} %}
{% endif %}
{% include "portal/partial/_nav_icon_secure_messaging.html.twig"
with {
url: "secure-msgs-card"|attr_url
, icon: "envelope"
, navText: "Secure Messaging"|xl
, newcnt: newcnt
, id: "messages-go"
} %}
{% include "portal/partial/_nav_icon.html.twig"
with {
url: "lists"|attr_url
, icon: "list"
, navText: "Health Snapshot"|xl
, id: "lists-go"
} %}
{% include "portal/partial/_nav_icon.html.twig"
with {
url: "profilecard"|attr_url
, icon: "user"
, navText: "Profile"|xl
, id: "profile-go"
} %}
{% if portal_two_ledger %}
{% include "portal/partial/_nav_icon.html.twig"
with {
url: "ledgercard"|attr_url
, icon: "credit-card"
, navText: "Billing Summary"|xl
, id: "ledger-go"
} %}
{% endif %}
{% if ccdaOk or 'allow_custom_report' or portal_onsite_document_download %}
{% include "portal/partial/_nav_icon.html.twig"
with {
url: "reports-list-card"|attr_url
, icon: "file-download"
, navText: "Medical Reports"|xl
, id: "reports-go"
} %}
{% endif %}
{% if isEasyPro %}
{% include "portal/partial/_nav_icon.html.twig"
with {
url: "procard"|attr_url
, icon: "flask-vial"
, navText: "PRO Assessment"|xl
, id: "easypro-go"
} %}
{% endif %}
{% include "portal/partial/_nav_icon.html.twig"
with {
url: "settings-card"|attr_url
, icon: "gear"
, navText: "Settings"|xl
, id: "settings-go"
} %}
{% include "portal/partial/_nav_icon.html.twig"
with {
url: "help-card"|attr_url
, icon: "question-circle"
, navText: "Help"|xl
, id: "help-go"
} %}
{{ fireEvent(eventNames.dashboardInjectCard) }}
{% include "portal/partial/_nav_icon.html.twig"
with {
url: webroot ~ "./logout.php"
,localLink: false
, icon: "right-from-bracket"
, navText: "Logout"|xl
, id: "logout-go"
} %}
{# End of quickstart-cards #}
{% include "portal/partial/cards/_health_snapshot_card.html.twig" with {healthSnapshot: healthSnapshot}%}
{% include "portal/partial/_help_card.html.twig" with {
id: "help-card"
,title: "Dashboard Help"|xl
,items: [
{
title: "Clinical Documents"|xl
,icon: "file"
,description: "Clinical forms and documents that have been sent by your clinical staff to be filled out."|xl
,enabled: true
}
,{
title: "Appointments"|xl
,icon: "calendar-check"
,description: "View upcoming appointments and if allowed by your clinical staff make new appointments."|xl
,enabled: allow_portal_appointments
}
,{
title: "Make Payment"|xl
,icon: "wallet"
,description: "Submit payments for amounts you owe for your medical care."|xl
,enabled: portal_two_payments
}
,{
title: "Secure Messaging"|xl
,icon: "envelope"
,description: "You can send and receive secure communications with your care team staff through this system."|xl
,enabled: true
}
,{
title: "Health Snapshot"|xl
,icon: "clipboard"
,description: "See your immunization, medications, active prescriptions, allergy list, current problems list, and lab results."|xl
,enabled: true
}
,{
title: "Profile"|xl
,icon: "user"
,description: "Review and edit your medical profile information. This includes your basic demographics (name, address, emergency contact). You can also review your insurance information if you use a third party insurer to help pay for treatment of care."|xl
,enabled: true
}
,{
title: "Billing Summary"|xl
,icon: "credit-card"
,description: ""|xl
,enabled: portal_two_ledger
}
,{
title: "Medical Reports"|xl
,icon: "gear"
,description: "Setup your digital signature for signing your clinical documents, update your login credentials, or change application settings in the portal."|xl
,enabled: ccdaOk or 'allow_custom_report' or portal_onsite_document_download
}
,{
title: "PRO Assessment"|xl
,icon: "flask-vial"
,description: "Questionnaires/Assessments using the Patient-Reported Outcomes Measurement Information System (PROMIS)."|xl
,enabled: isEasyPro
}
,{
title: "Settings"|xl
,icon: "gear"
,description: "Setup your digital signature for signing your clinical documents, update your login credentials, or change application settings in the portal."|xl
,enabled: true
}
]
} %}
{% include "portal/partial/_help_card.html.twig" with {
id: "help-card-reports-list"
,backButton: true
,backButtonCard: "reports-list-card"
,backButtonClass: "reports-list-back-btn"
,title: "Medical Reports Help"|xl
,items: [
{
title: "View Summary of Care"|xl
,icon: "notes-medical"
,description: "View your Summary of Care document that includes a printable version of your healthcare information. This document can be used to transfer your care to another healthcare facility. In technical terms it is called a C-CDA."|xl
,enabled: ccdaOk
}
,{
title: "Download Summary of Care"|xl
,icon: "notes-medical"
,description: "Download a copy of your Summary of Care document. This document can be used to transfer your care to another healthcare facility. In technical terms it is called a C-CDA."|xl
,enabled: ccdaOk
}
,{
title: "Customized Medical History Report"|xl
,icon: "clipboard"
,description: "View, Print, or Download individual items of your medical history based upon your custom selections"|xl
,enabled: true
}
,{
title: "Download Medical Record Documents"|xl
,icon: "notes-medical"
,description: "Select stored documents in your medical file that have been uploaded by your clinical staff or yourself to be downloaded."|xl
,enabled: portal_onsite_document_download
}
]
} %}
{{ 'Medical Reports' | xlt }}
{% if ccdaOk %}
{% include "portal/partial/_nav_icon.html.twig"
with {
url: web_root ~ "/ccdaservice/ccda_gateway.php?action=view&csrf_token_form=" ~ csrfUtils|attr_url
, icon: "notes-medical"
, navText: "View Summary of Care"|xl
, id: "view-summary-go"
, localLink: false
} %}
{% include "portal/partial/_nav_icon.html.twig"
with {
url: web_root ~ "/ccdaservice/ccda_gateway.php?action=dl&csrf_token_form=" ~ csrfUtils|attr_url
, icon: "download"
, navText: "Download Summary of Care"|xl
, id: "download-summary-go"
, localLink: false
} %}
{% endif %}
{% if 'allow_custom_report' %}
{% include "portal/partial/_nav_icon.html.twig"
with {
url: "reportcard"|attr_url
, icon: "clipboard"
, navText: "Customized Medical History Report"|xl
, id: "create-report-go"
} %}
{% endif %}
{% if portal_onsite_document_download %}
{% include "portal/partial/_nav_icon.html.twig"
with {
url: "downloadcard"|attr_url
, icon: "file-zipper"
, navText: "Download Medical Record Documents"|xl
, id: "download-documents-go"
} %}
{% endif %}
{% include "portal/partial/_nav_icon.html.twig"
with {
url: "help-card-reports-list"|attr_url
, icon: "question-circle"
, navText: "Help"|xl
, id: "help-reports-list-go"
} %}
{% include "portal/partial/_alert_loading.html.twig" %}
{% if allow_portal_appointments %}
{% include "portal/partial/cards/_appointment_card.html.twig" with {patientID: patientID} %}
{% endif %}
{% if portal_two_payments %}
{{ 'Payments' | xlt }}
{% include "portal/partial/_alert_loading.html.twig" %}
{% endif %}
{% if portal_onsite_document_download %}
{{ "Back"|xlt }}
{{ 'Download Documents From Medical Record' | xlt }}
{% endif %}
{% if portal_two_ledger %}
{{ 'Billing Summary' | xlt }}
{% endif %}
{% if isEasyPro %}
{{ 'Patient Reported Outcomes' | xlt }}
{% include "portal/partial/_alert_loading.html.twig" %}