diff --git a/CustomerNotes.md b/CustomerNotes.md
index 63bbe24a..c6b99366 100644
--- a/CustomerNotes.md
+++ b/CustomerNotes.md
@@ -911,6 +911,11 @@ _Overall Deadline_
Everything before Q4, SSO, Frontend
Context, they want to have everything setup in Northpass by Q4 because they are working on sustainability titles and their launch can be really clean in Q4.
+Single Course Analysis - because they wanted a dashboard
+Course Completion - because they wanted to see who completed it
+ * Course completion NO should show up regardless of attempt start
+ *
+
## Tasks
- [ ] Need to Hide some courses for an offline assesment
@@ -1273,6 +1278,17 @@ Next 6-8 Months:
* Integrations, Design, and any other changes should be completed by April of 2023
* Wait until November for New Conversations
+## Meeting on 9/8/22
+ * They need to train sales people on the new product
+ * And all other employees later in the future, mostly customer-facing employees
+ * Combo of live meetings & LMS
+ * They also need to train their partner, Geographic Learning
+ * Throwing around the idea of using Northpass for this
+ * GL needs accountability - share recording, small quiz, check they are done
+ * Can we use sales training and track actual sales?
+ * Add ammo for Sophia's case
+ * Workflow: attend the live session > Test knowledge >
+
## Tasks
* [ ] /app/course, change text to: "Courses | Great Courses from the comfort of your home or classroom."
* [ ] Add personalized message to /app.
@@ -1557,6 +1573,11 @@ Care center vs Pals
ADP Integration -
Okta SSO - Ted, Security Team
+## Mapping Session with Mini, Lizzy, and Becca
+
+*
+
+
# Nana
* [X] Send template blog, and academy screenshots
diff --git a/NP_Custom_Templates/customer_templates/.DS_Store b/NP_Custom_Templates/customer_templates/.DS_Store
index 3c9f892f..007f13ec 100644
Binary files a/NP_Custom_Templates/customer_templates/.DS_Store and b/NP_Custom_Templates/customer_templates/.DS_Store differ
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/homepage.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/homepage.html.liquid
index 6f4c6b49..9af8b8e3 100644
--- a/NP_Custom_Templates/customer_templates/Omnisend/homepage.html.liquid
+++ b/NP_Custom_Templates/customer_templates/Omnisend/homepage.html.liquid
@@ -2,6 +2,10 @@
{% include "homepage_recommended" %}
{% include 'homepage_courses_list' %}
+{% comment %} {% endcomment %}
+
{% include 'homepage_latest' %}
{% include "homepage_beginning" %}
@@ -28,4 +32,5 @@
padding: 0 10%;
}
}
-
\ No newline at end of file
+
+
diff --git a/NP_Custom_Templates/customer_templates/Quantuvos/!old_dashboard.html.liquid b/NP_Custom_Templates/customer_templates/Quantuvos/!old_dashboard.html.liquid
new file mode 100644
index 00000000..0dfac9a1
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Quantuvos/!old_dashboard.html.liquid
@@ -0,0 +1,48 @@
+{% include "header" %}
+{% include "course_version_outdated_alert", courses: courses.enrolled %}
+{% include "sub_navigation" %}
+
+
+
+
+
+ Our Most Popular Courses
+
+
+ 10,000+ unique online course list designs
+
+
+ {% include 'dashboard_filter' %}
+
+
+ {% for course in courses.enrolled %}
+ {% include 'cards_course_dashboard' with course %}
+ {% endfor %}
+
+
+
+
+
+{% include "footer" %}
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Quantuvos/!old_footer.html.liquid b/NP_Custom_Templates/customer_templates/Quantuvos/!old_footer.html.liquid
new file mode 100644
index 00000000..9cf8fe47
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Quantuvos/!old_footer.html.liquid
@@ -0,0 +1,253 @@
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Quantuvos/_cards_course_dashboard.html.liquid b/NP_Custom_Templates/customer_templates/Quantuvos/_cards_course_dashboard.html.liquid
new file mode 100644
index 00000000..36d03b31
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Quantuvos/_cards_course_dashboard.html.liquid
@@ -0,0 +1,74 @@
+{% capture course_path %}{% route course, id: course.id %}{% endcapture %}
+{% assign activites_count = 0 %}
+{% for section in course.sections %}
+ {% assign activites_count = activites_count | plus: section.activities.size %}
+{% endfor %}
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Quantuvos/_courses_index.html.liquid b/NP_Custom_Templates/customer_templates/Quantuvos/_courses_index.html.liquid
new file mode 100644
index 00000000..f5ef68b7
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Quantuvos/_courses_index.html.liquid
@@ -0,0 +1,16 @@
+{% if courses.enrolled.any? %}
+
+ {% for course in courses.enrolled limit: 12 %}
+
+
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Quantuvos/_dashboard_filter.html.liquid b/NP_Custom_Templates/customer_templates/Quantuvos/_dashboard_filter.html.liquid
new file mode 100644
index 00000000..8e8e0752
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Quantuvos/_dashboard_filter.html.liquid
@@ -0,0 +1,104 @@
+
+
+
+ All Categories
+
+ {% for category in categories.enrolled %}
+
+ {{ category.name }}
+
+ {% endfor %}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Quantuvos/_dashboard_header.html.liquid b/NP_Custom_Templates/customer_templates/Quantuvos/_dashboard_header.html.liquid
new file mode 100644
index 00000000..b5c3f563
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Quantuvos/_dashboard_header.html.liquid
@@ -0,0 +1,192 @@
+{% assign courses_completed = 0 %}
+{% assign hourses_completed = 0 %}
+{% for course in courses.enrolled %}
+ {% if course.completed? %}
+ {% assign courses_completed = courses_completed | plus: 1 %}
+ {% assign hourses_completed = hourses_completed | plus: course.properties.course_time %}
+ {% endif %}
+{% endfor %}
+{% assign hourses_completed = hourses_completed | divided_by: 60 %}
+
+
+
+
+ Welcome back, {{ current_person.first_name }}
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
+
+
+
+
+{% comment %} {% endcomment %}
+
+
+
+{% include "header_mobile_side_menu" %}
+{% include "header_search" %}
+{% comment %}{% include "header_desktop_explore" %}{% endcomment %}
+{% include "messages" %}
+
+
diff --git a/NP_Custom_Templates/customer_templates/Quantuvos/_header_desktop_explore.html.liquid b/NP_Custom_Templates/customer_templates/Quantuvos/_header_desktop_explore.html.liquid
new file mode 100644
index 00000000..0414cba7
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Quantuvos/_header_desktop_explore.html.liquid
@@ -0,0 +1,222 @@
+
+
+
+
+ Architecture
+
+
+
+
+
+ Business
+
+
+
+
+
+ Computer Programming
+
+
+
+
+ Data Analysis
+
+
+
+
+ Design
+
+
+
+
+
+ Education
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Quantuvos/_header_desktop_top_menu.html.liquid b/NP_Custom_Templates/customer_templates/Quantuvos/_header_desktop_top_menu.html.liquid
new file mode 100644
index 00000000..3dac4d52
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Quantuvos/_header_desktop_top_menu.html.liquid
@@ -0,0 +1,185 @@
+
+
+
+ {% comment %}
+ -- Comment from Norm:
+ This was the original menu layout with dropdowns as per their styling needs.
+ Last minute there were changes, so I edited the block below and saved this
+ for when they revert. Be sure to uncomment the script at the bottom too.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Quantuvos/_sub_navigation.html.liquid b/NP_Custom_Templates/customer_templates/Quantuvos/_sub_navigation.html.liquid
new file mode 100644
index 00000000..e69de29b
diff --git a/NP_Custom_Templates/customer_templates/Quantuvos/course.html.liquid b/NP_Custom_Templates/customer_templates/Quantuvos/course.html.liquid
new file mode 100644
index 00000000..88514f4f
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Quantuvos/course.html.liquid
@@ -0,0 +1,32 @@
+{% include "header" %}
+
+