diff --git a/Custom_Templates/customer_templates/.DS_Store b/Custom_Templates/customer_templates/.DS_Store index c13b8640..8aeac640 100644 Binary files a/Custom_Templates/customer_templates/.DS_Store and b/Custom_Templates/customer_templates/.DS_Store differ diff --git a/Custom_Templates/customer_templates/Cayuse/_cards_course.html.liquid b/Custom_Templates/customer_templates/Cayuse/_cards_course.html.liquid new file mode 100644 index 00000000..7a984f86 --- /dev/null +++ b/Custom_Templates/customer_templates/Cayuse/_cards_course.html.liquid @@ -0,0 +1,40 @@ +
+
+ {% if course.ribbon %} +
+ {{ course.ribbon }} +
+ {% endif %} + {{ course.name }} +
+

+ {{ course.name }} +

+
+ {{ course.instructor_names }} +
+
+ {{ course.short_description }} +
+ +
+
+
diff --git a/Custom_Templates/customer_templates/Cayuse/_cards_learning_path.html.liquid b/Custom_Templates/customer_templates/Cayuse/_cards_learning_path.html.liquid new file mode 100644 index 00000000..ebf79dd4 --- /dev/null +++ b/Custom_Templates/customer_templates/Cayuse/_cards_learning_path.html.liquid @@ -0,0 +1,73 @@ +
+
+
+ {{ learning_path.name }} +
+
+ +
{% t shared.learning_path.title %}
+
+ {{ learning_path.items.count }} {% t .items %} +
+
+
+
{% t shared.learning_path.title %}
+ +
+ +
+

+ {{ learning_path.name }} +

+ +
+ {{ learning_path.instructor_names }} +
+ +
+ {{ learning_path.description }} +
+ +
+ {% t shared.progress, count: learning_path.progress %} +
+ +
+
+
+
+ + +
+
+
+
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Cayuse/_cards_training_event.html.liquid b/Custom_Templates/customer_templates/Cayuse/_cards_training_event.html.liquid new file mode 100644 index 00000000..acf1d5b1 --- /dev/null +++ b/Custom_Templates/customer_templates/Cayuse/_cards_training_event.html.liquid @@ -0,0 +1,48 @@ +
+
+
+

+ {{ training_event.title }} +

+
+ {% t shared.event_types, key: training_event.event_type %} +
+
+ +
+
+
+ {{ training_event.sessions.first.day }} +
+
+
+ {{ training_event.sessions.first.month }} +
+
+ {{ training_event.sessions.first.year }} +
+
+
+
+
+
+
+ + + {% t .sessions, count: training_event.sessions.size %} + + +
+
+
+
diff --git a/Custom_Templates/customer_templates/Cayuse/_courses_filter.html.liquid b/Custom_Templates/customer_templates/Cayuse/_courses_filter.html.liquid new file mode 100644 index 00000000..ef9b3816 --- /dev/null +++ b/Custom_Templates/customer_templates/Cayuse/_courses_filter.html.liquid @@ -0,0 +1,34 @@ +
+
+ Categories +
+
+ All +
+ {% for category in categories.in_catalog %} +
+ {{ category.name }} +
+ {% endfor %} +
+ + diff --git a/Custom_Templates/customer_templates/Cayuse/_courses_with_filter.html.liquid b/Custom_Templates/customer_templates/Cayuse/_courses_with_filter.html.liquid new file mode 100644 index 00000000..2ff458b8 --- /dev/null +++ b/Custom_Templates/customer_templates/Cayuse/_courses_with_filter.html.liquid @@ -0,0 +1,20 @@ +
+
+ Library +
+
+
+ {% include "courses_filter" %} +
+
+ {% for course in courses.in_catalog %} +
+ {% include "cards_course" %} +
+ {% endfor %} +
+ {% include "courses_zero_state", message: "No courses matching criteria" %} +
+
+
+
diff --git a/Custom_Templates/customer_templates/Cayuse/_head.html.liquid b/Custom_Templates/customer_templates/Cayuse/_head.html.liquid new file mode 100644 index 00000000..589bd889 --- /dev/null +++ b/Custom_Templates/customer_templates/Cayuse/_head.html.liquid @@ -0,0 +1,9 @@ + + + + +{% styles default %} +{% styles colors %} +{% styles custom %} + + diff --git a/Custom_Templates/customer_templates/Cayuse/_header.html.liquid b/Custom_Templates/customer_templates/Cayuse/_header.html.liquid new file mode 100644 index 00000000..d1033353 --- /dev/null +++ b/Custom_Templates/customer_templates/Cayuse/_header.html.liquid @@ -0,0 +1,178 @@ +
+
+
+ {% if current_person.signed_in? %} + + + {% endif %} +
+ {% if current_school.logo_url %} +

+ + {{ current_school.name }} + +

+ {% else %} + + {{ current_school.name }} + + {% endif %} + +
+ +
+ + {% if current_person.signed_in? %} + +
+ + +
+ {% else %} +
+ {% endif %} + +
+ +
+
+
+
+ +{% include "messages" %} diff --git a/Custom_Templates/customer_templates/Cayuse/_popular_topics.html.liquid b/Custom_Templates/customer_templates/Cayuse/_popular_topics.html.liquid new file mode 100644 index 00000000..0e573e8d --- /dev/null +++ b/Custom_Templates/customer_templates/Cayuse/_popular_topics.html.liquid @@ -0,0 +1,83 @@ +
+

+ Popular Topics +

+
+ + + + + + + + + + +
+
+ + diff --git a/Custom_Templates/customer_templates/Cayuse/_role_select.html.liquid b/Custom_Templates/customer_templates/Cayuse/_role_select.html.liquid new file mode 100644 index 00000000..ad8b6059 --- /dev/null +++ b/Custom_Templates/customer_templates/Cayuse/_role_select.html.liquid @@ -0,0 +1,106 @@ +
+
+ Library +
+
+ +
+ +
+
+ Administrators +
+
+
+
+ +
+ +
+
+ Researchers +
+
+
+
+ +
+ +
+
+ IT Managers +
+
+
+
+ +
+ +
+
+ Staff +
+
+
+
+
+
+ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Cayuse/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/Cayuse/_sub_navigation.html.liquid new file mode 100644 index 00000000..3b952642 --- /dev/null +++ b/Custom_Templates/customer_templates/Cayuse/_sub_navigation.html.liquid @@ -0,0 +1,25 @@ + diff --git a/Custom_Templates/customer_templates/Cayuse/courses.html.liquid b/Custom_Templates/customer_templates/Cayuse/courses.html.liquid new file mode 100644 index 00000000..89e65b19 --- /dev/null +++ b/Custom_Templates/customer_templates/Cayuse/courses.html.liquid @@ -0,0 +1,59 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} +{% include "sub_navigation" %} +
+ {% include "role_select" %} + {% include 'courses_with_filter' %} +
+{% include "footer" %} + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Crayon/onboarding_unused.html.liquid b/Custom_Templates/customer_templates/Cayuse/dashboard.html.liquid similarity index 96% rename from Custom_Templates/customer_templates/Crayon/onboarding_unused.html.liquid rename to Custom_Templates/customer_templates/Cayuse/dashboard.html.liquid index 57131292..ff576edb 100644 --- a/Custom_Templates/customer_templates/Crayon/onboarding_unused.html.liquid +++ b/Custom_Templates/customer_templates/Cayuse/dashboard.html.liquid @@ -15,6 +15,7 @@ {% include "courses_index", class: "col-xs-12 col-sm-6 np-stretch-content" %} + {% if features.training_events? %}
@@ -23,8 +24,7 @@ {% include "training_events_dashboard" %}
{% endif %} + {% include 'popular_topics' %}
{% include "footer" %} - -current_page: "/app/user-guides" diff --git a/Custom_Templates/customer_templates/Cayuse/homepage.html.liquid b/Custom_Templates/customer_templates/Cayuse/homepage.html.liquid new file mode 100644 index 00000000..6b9374ba --- /dev/null +++ b/Custom_Templates/customer_templates/Cayuse/homepage.html.liquid @@ -0,0 +1,55 @@ + +{%- comment -%} {% include "header" %} +{% include "course_version_outdated_alert", courses: courses.featured %} +
+
+ {{ homepage.headline }} +
+
+ {{ homepage.headline }} +
+
+ {{ homepage.subheadline }} +
+ + {% t .discover %} + +
+
+ {% include "sub_navigation" %} + +
+{% include "footer" %} {%- endcomment -%} diff --git a/Custom_Templates/customer_templates/Cayuse/styles.css.liquid b/Custom_Templates/customer_templates/Cayuse/styles.css.liquid new file mode 100644 index 00000000..6b779a69 --- /dev/null +++ b/Custom_Templates/customer_templates/Cayuse/styles.css.liquid @@ -0,0 +1,50 @@ + /* + Put your custom overlay styles in here + You can use your northpass color palette in this file + +{{ color_palette.button_font_color }} +{{ color_palette.button_color }} +{{ color_palette.button_hover_color }} +{{ color_palette.header_font_color }} +{{ color_palette.header_font_hover_color }} +{{ color_palette.header_color }} +*/ + +a, a:hover, a:focus, a:active { + text-decoration: none; + color: inherit; +} + +.course-description { + margin-top: 10px; +} + @media screen and (min-width: 768px) and (max-width: 950px){ + .np-card-content-footer { + flex-direction: column; + align-items: center; + gap: 20px; + } +} +.button-wrapper { + position: relative; +} +.back-button { + position: absolute !important; + background: #2e3e8f; + opacity: 0.8; + width: 100%; + height: 100%; + top: 4px; + left: 4px; + border-radius: 4px; + z-index: -1; +} +.np-button:hover { + color: white; +} +.np-card-content-progress { + font-size: 1rem; +} +.np-header-desktop-nav-list { + margin-bottom: 0; +} diff --git a/Custom_Templates/customer_templates/Crayon/_carousel_courses.html.liquid b/Custom_Templates/customer_templates/Crayon/_carousel_courses.html.liquid new file mode 100644 index 00000000..9e17e39a --- /dev/null +++ b/Custom_Templates/customer_templates/Crayon/_carousel_courses.html.liquid @@ -0,0 +1,82 @@ +{% assign topic_classname = topic | split: " " %} + + + + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Crayon/_carousel_events.html.liquid b/Custom_Templates/customer_templates/Crayon/_carousel_events.html.liquid new file mode 100644 index 00000000..ab5b3388 --- /dev/null +++ b/Custom_Templates/customer_templates/Crayon/_carousel_events.html.liquid @@ -0,0 +1,37 @@ + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Crayon/_custom_header.html.liquid b/Custom_Templates/customer_templates/Crayon/_custom_header.html.liquid new file mode 100644 index 00000000..be231152 --- /dev/null +++ b/Custom_Templates/customer_templates/Crayon/_custom_header.html.liquid @@ -0,0 +1,170 @@ +
+
+
+ {% if current_person.signed_in? %} + + + {% endif %} +
+ +

+ + + +

+ + + {%include 'sub_navigation'%} + + {% if current_person.signed_in? %} + +
+ + +
+ {% else %} +
+ {% endif %} + +
+ +
+
+
+
+ + {% include "messages" %} + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Crayon/_filter_by_progress.html.liquid b/Custom_Templates/customer_templates/Crayon/_filter_by_progress.html.liquid new file mode 100644 index 00000000..b8effef5 --- /dev/null +++ b/Custom_Templates/customer_templates/Crayon/_filter_by_progress.html.liquid @@ -0,0 +1,116 @@ +{% assign topic_classname = topic | split: " " %} + +
+ {% if label %} +
+ {{ label }} +
+ {% endif %} +
+ + + +
+
+ + + diff --git a/Custom_Templates/customer_templates/Crayon/_head.html.liquid b/Custom_Templates/customer_templates/Crayon/_head.html.liquid index 05598c24..9531e766 100644 --- a/Custom_Templates/customer_templates/Crayon/_head.html.liquid +++ b/Custom_Templates/customer_templates/Crayon/_head.html.liquid @@ -4,6 +4,8 @@ + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Crayon/_widget_course_progress.html.liquid b/Custom_Templates/customer_templates/Crayon/_widget_course_progress.html.liquid new file mode 100644 index 00000000..23c95162 --- /dev/null +++ b/Custom_Templates/customer_templates/Crayon/_widget_course_progress.html.liquid @@ -0,0 +1,131 @@ +{% assign ring_background_color = 'rgba(192, 220, 246, 0.6)' %} +{% assign ring_fill_color = '#0274de' %} +{% assign number_color = 'rgb(0, 0, 0)' %} +{% assign text_color = '#0274de' %} +{% assign background_color = 'white' %} + +
+
+ {% if courses.enrolled.any? %} + {% assign countComplete = 0 %} + {% assign countInProgress = 0 %} + {% assign countNotStarted = 0 %} + {% assign countTotal = 0 | times: 1.0 %} + {% for course in courses.enrolled %} + {% assign countTotal = countTotal | plus: 1 %} + {% if course.progress == 100 %} + {% assign countComplete = countComplete | plus: 1 %} + {% endif %} + {% if course.progress > 0 and course.progress < 100 %} + {% assign countInProgress = countInProgress | plus: 1 %} + {% endif %} + {% if course.progress == 0 %} + {% assign countNotStarted = countNotStarted | plus: 1 %} + {% endif %} + {% endfor %} + + {% else %} + {% capture message %} + {% t shared.zero_state.courses.index, + key: current_school.course_vocabulary + %} + {% endcapture %} + {% include "courses_zero_state", message: message %} + {% endif %} +
+
+ + + diff --git a/Custom_Templates/customer_templates/Crayon/onboarding.html.liquid b/Custom_Templates/customer_templates/Crayon/onboarding.html.liquid index ec5ad20a..443b3465 100644 --- a/Custom_Templates/customer_templates/Crayon/onboarding.html.liquid +++ b/Custom_Templates/customer_templates/Crayon/onboarding.html.liquid @@ -1,61 +1,231 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.featured %} -
-
- {{ homepage.headline }} -
-
- {{ homepage.headline }} -
-
- {{ homepage.subheadline }} -
-
+ +{% include "custom_header" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} + +
+
+
Hi {{current_person.first_name}}!
+
This is what's relevant to you right now + in Crayon Onboarding Academy.
- {% include "sub_navigation" %} -
{% include "footer" %} + diff --git a/Custom_Templates/customer_templates/Crayon/styles.css.liquid b/Custom_Templates/customer_templates/Crayon/styles.css.liquid index 64640302..50c21aee 100644 --- a/Custom_Templates/customer_templates/Crayon/styles.css.liquid +++ b/Custom_Templates/customer_templates/Crayon/styles.css.liquid @@ -205,7 +205,7 @@ body, html, div { .np-sub-navigation-content-item-inactive, .np-sub-navigation-content-item-active, .np-sub-navigation-content-item-icon { - color: #2DC3D0 !important; + color: #2DC3D0; } .np-sub-navigation { diff --git a/Custom_Templates/customer_templates/HackerRank External/_cards_learning_path.html.liquid b/Custom_Templates/customer_templates/HackerRank External/_cards_learning_path.html.liquid new file mode 100644 index 00000000..cdc870e9 --- /dev/null +++ b/Custom_Templates/customer_templates/HackerRank External/_cards_learning_path.html.liquid @@ -0,0 +1,102 @@ +{% comment %}This section of code will iterate over all courses in a learning path and average out the completion per course compared to the total of the LP {% endcomment %} +{% assign total_progress = 0 %} +{% assign completed_progress = 0 %} + +{% for item in learning_path.items %} + {% if item.course? %} + {% assign total_progress = total_progress | plus: 100 %} + + {% assign completed_progress = completed_progress | plus: item.progress %} + {% endif %} +{% endfor %} + +{% assign total_progress = total_progress | times: 0.01 %} +{% assign calculated_progress = completed_progress | divided_by: total_progress %} + +
+
+
+ {{ learning_path.name }} +
+
+ +
{% t shared.learning_path.title %}
+
+ {{ learning_path.items.count }} {% t .items %} +
+
+
+
{% t shared.learning_path.title %}
+ +
+ +
+

+ {{ learning_path.name }} +

+ +
+ {{ learning_path.instructor_names }} +
+ +
+ {{ learning_path.description }} +
+ +
+ {% comment %}{% t shared.progress, count: learning_path.progress %}{% endcomment %} + {% if calculated_progress < 1 %} + Not Started + {% else %} + {{calculated_progress | ceil }}% Completed + {% endif %} +
+ +
+
+
+
+ + +
+
+
+
+
+
+
+
+
+ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/HackerRank External/_learning_path_course.html.liquid b/Custom_Templates/customer_templates/HackerRank External/_learning_path_course.html.liquid new file mode 100644 index 00000000..15976a51 --- /dev/null +++ b/Custom_Templates/customer_templates/HackerRank External/_learning_path_course.html.liquid @@ -0,0 +1,60 @@ +{% if learning_path.enrolled? and course.unlocked? %} +
+ +
+ {{ course.name }} +
+
+ {{ course.name }} +
+ {% if course.instructors %} +
+ {{ course.instructors }} +
+ {% endif %} +
+ {% t shared.progress, count: course.progress %} +
+
+ + {% comment %} + {% if course.optional? %} +
+ {% t shared.optional %} +
+ {% endif %} + {% endcomment %} +
+
+{% else %} +
+
+ {{ course.name }} +
+
+ {{ course.name }} +
+
+ {% comment %} + {% if course.optional? %} +
+ {% t shared.optional %} +
+ {% endif %} + {% endcomment %} +
+
+{% endif %} diff --git a/Custom_Templates/customer_templates/HackerRank External/_learning_path_training_session.html.liquid b/Custom_Templates/customer_templates/HackerRank External/_learning_path_training_session.html.liquid new file mode 100644 index 00000000..93616c7c --- /dev/null +++ b/Custom_Templates/customer_templates/HackerRank External/_learning_path_training_session.html.liquid @@ -0,0 +1,57 @@ +{% if learning_path.enrolled? and training_session.unlocked? %} +
+ +
+ +
+
{{ training_session.name }}
+
{{ training_session.instructors }}
+
+ {{ training_session.time }} {{ training_session.time_zone }} +
+
+ + {% comment %} + {% if training_session.optional? %} +
+ {% t shared.optional %} +
+ {% endif %} + {% endcomment %} +
+
+{% else %} +
+
+ +
+
{{ training_session.name }}
+
{{ training_session.caption }}
+
+ {% comment %} + {% if training_session.optional? %} +
+ {% t shared.optional %} +
+ {% endif %} + {% endcomment %} +
+
+{% endif %} diff --git a/Custom_Templates/customer_templates/HackerRank External/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/HackerRank External/_sub_navigation.html.liquid new file mode 100644 index 00000000..d10d6176 --- /dev/null +++ b/Custom_Templates/customer_templates/HackerRank External/_sub_navigation.html.liquid @@ -0,0 +1,28 @@ + diff --git a/Custom_Templates/customer_templates/HackerRank External/_training_session_details.html.liquid b/Custom_Templates/customer_templates/HackerRank External/_training_session_details.html.liquid new file mode 100644 index 00000000..ac9b4c93 --- /dev/null +++ b/Custom_Templates/customer_templates/HackerRank External/_training_session_details.html.liquid @@ -0,0 +1,24 @@ +
+ {% include "training_session_date" %} + +
+ + {{ training_session.time_period }} {{ training_session.time_zone }} +
+ + {% if training_session.location %} +
+ + {% comment %} {{ training_session.location }} {% endcomment %} +
+ {% endif %} + + {% if training_session.session_url %} + + {% endif %} +
diff --git a/Custom_Templates/customer_templates/HackerRank External/auth_url_email.html.liquid b/Custom_Templates/customer_templates/HackerRank External/auth_url_email.html.liquid new file mode 100644 index 00000000..8e2ecc17 --- /dev/null +++ b/Custom_Templates/customer_templates/HackerRank External/auth_url_email.html.liquid @@ -0,0 +1,66 @@ +
+
+ {% include "header_minimal" %} +
+
+ {% form_authenticity_token %} +
+ {% t shared.welcome_to_school, school_name: current_school.name %} +
+
+ {% comment %} {% t .headline, key: current_school.course_vocabulary %} {% endcomment %} + To access the HackerRank Academy, simply enter your first name, last name, and work email address below. +
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
+
+ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/HackerRank External/catalog.html.liquid b/Custom_Templates/customer_templates/HackerRank External/catalog.html.liquid new file mode 100644 index 00000000..907226bb --- /dev/null +++ b/Custom_Templates/customer_templates/HackerRank External/catalog.html.liquid @@ -0,0 +1,63 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.in_catalog %} +{% include "sub_navigation" %} +
+
+
+
{{ catalog.headline }}
+
{{ catalog.subheadline }}
+
+ {% capture label %}{% t shared.filters.by_category %}{% endcapture %} + + {% if courses.in_catalog.any? %} + {% + include "filter_dropdown", + filters: courses.filters, + key: "category_uuid", + label: label + %} + {% endif %} +
+ {% include "courses_catalog" %} +
+{% include "footer" %} + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/HackerRank External/course.html.liquid b/Custom_Templates/customer_templates/HackerRank External/course.html.liquid new file mode 100644 index 00000000..2403c3da --- /dev/null +++ b/Custom_Templates/customer_templates/HackerRank External/course.html.liquid @@ -0,0 +1,24 @@ + + {% if course.enrolled? %} + + + {% else %} + + + {% endif %} + +{% comment %} {% include "header" %} +
+
+ {% include "course_desktop_view" %} +
+
+ {% include "course_mobile_view" %} +
+
+{% include "footer" %} {% endcomment %} diff --git a/Custom_Templates/customer_templates/HackerRank External/homepage.html.liquid b/Custom_Templates/customer_templates/HackerRank External/homepage.html.liquid new file mode 100644 index 00000000..03c64f86 --- /dev/null +++ b/Custom_Templates/customer_templates/HackerRank External/homepage.html.liquid @@ -0,0 +1,47 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.featured %} +
+
+ {{ homepage.headline }} +
+
+ {{ homepage.headline }} +
+
+ {{ homepage.subheadline }} +
+ + {% t .discover %} + +
+
+ {% include "sub_navigation" %} + +
+{% include "footer" %} diff --git a/Custom_Templates/customer_templates/HackerRank External/training_events.html.liquid b/Custom_Templates/customer_templates/HackerRank External/training_events.html.liquid new file mode 100644 index 00000000..f7603c70 --- /dev/null +++ b/Custom_Templates/customer_templates/HackerRank External/training_events.html.liquid @@ -0,0 +1,19 @@ +{% include "header" %} +{% include "sub_navigation" %} +
+
+
+
+ Live Training Webinars +
+
+ View and register for upcoming online webinars +
+
+
+ {% include "training_events_filter" %} +
+
+ {% include "training_events_index" %} +
+{% include "footer" %} diff --git a/CustomerNotes/Aiim.md b/CustomerNotes/Aiim.md index 30522660..d9126c5a 100644 --- a/CustomerNotes/Aiim.md +++ b/CustomerNotes/Aiim.md @@ -66,4 +66,4 @@ _Analytics:_ Certs sends out credential name - it should share course/lp name instead of cert name LinkedIn metrics for who has added the cert to their profile. -TODO: Send Georgina the pricing for OpenSesame. +DONE: Send Georgina the pricing for OpenSesame. diff --git a/CustomerNotes/Walmart.md b/CustomerNotes/Walmart.md index 3614c746..49e2eaa1 100644 --- a/CustomerNotes/Walmart.md +++ b/CustomerNotes/Walmart.md @@ -531,3 +531,13 @@ Enrollment: * They want to know what resources they have selected. * So what is the difference between the adoption and enrollment? * Travis: Overall enrollment (300k), then down a level of who has entered into a category, and then into an activity. + +## 06/28/2023 + +### Just Ece + +* Leadership meeting will happen on a monthly recurring basis at the same time as the first meeting. +* She wants us to configure the ops training requirements before end of next week. Allow ops team to configure the training items. +* This is for showing items in the help menu. +* Ece also wanted an update on the dashboard for analytics. We are not ready for them yet. We don't have an ETA. +* No questions from Jagannatha diff --git a/TS1.html b/TS1.html new file mode 100644 index 00000000..7ba5cb6a --- /dev/null +++ b/TS1.html @@ -0,0 +1,82 @@ += +

+ + In addition to the Getting Started training, Talkspace requires that all prescribers complete a series of annual compliance courses. We are unable to substitute similar courses that you have completed independently of Talkspace. + +

+
+

+ + You should complete the courses within 30 days of receiving this email. You will be compensated $110 within 60 days of completing this training. + +

+
+

+ + Important Information: + +

+ +
+

Selecting the correct course group link:

+

+ + + If you are a prescriber licensed in California please make sure you select the “Licensed in CA” link. If you are not licensed in California please select the “Not licensed in CA” link. + + +

+
+

+ + + Licensed in CA + + +

+
+

+ + NOT Licensed in CA + +

+

+

+ + Questions about compliance courses and payout should be directed to  + +training@talkpace.com 

diff --git a/TS2.html b/TS2.html new file mode 100644 index 00000000..ea223897 --- /dev/null +++ b/TS2.html @@ -0,0 +1,31 @@ +

In addition to the Getting Started & Managed Care training, Talkspace requires that all providers complete a series of annual compliance courses. We are unable to substitute similar courses that you have completed independently of Talkspace.

+
+

You should complete the courses within 30 days of receiving this email. You will be compensated $110 within 60 days of completing this training.

+
+

Important Information:

+ +
+

Selecting the correct course group link:

+

If you are a provider licensed in California please make sure you select the “Licensed in CA” link. If you are not licensed in California please select the “Not licensed in CA” link.

+
+

Licensed in CA

+
+

NOT Licensed in CA

+
+

Questions about compliance courses and payout should be directed to training@talkpace.com