diff --git a/Custom_Templates/customer_templates/.DS_Store b/Custom_Templates/customer_templates/.DS_Store index 31ae77ac..9268ffb4 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/Artera_prod/.DS_Store b/Custom_Templates/customer_templates/Artera_prod/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/Custom_Templates/customer_templates/Artera_prod/.DS_Store differ diff --git a/Custom_Templates/customer_templates/Artera_prod/_cards_course.html.liquid b/Custom_Templates/customer_templates/Artera_prod/_cards_course.html.liquid new file mode 100644 index 00000000..ae793964 --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_prod/_cards_course.html.liquid @@ -0,0 +1,32 @@ +{% capture course_path %}{% route course, id: course.id %}{% endcapture %} +
+ {% if course.categories %} + {% for course_category in course.categories %} + + {{ course_category.name }} + + {% endfor %} + {% endif %} +
+ +{{ course.short_description }}
+Hey everyone, this is Ally with Tripleseat and in this video we are going to go over how to create an event and the different options you have to do so. The quickest way to add an event right to your calendar is by clicking on the new event button on the top right corner of your screen in Tripleseat. Detailing this page out and clicking create will add the event right to our calendar as well as store the contact information within Tripleseat.
++Hey everyone, this is Ally with Tripleseat and in this video we are going to go over how to create an event and the different options you have to do so. The quickest way to add an event right to your calendar is by clicking on the new event button on the top right corner of your screen in Tripleseat. Detailing this page out and clicking create will add the event right to our calendar as well as store the contact information within Tripleseat. +
``` TODO: Show MJ example of Video+Article as two activities example. + +## 03/29/2023 + +### Design + +Past Q2, no definitive plans for spanish changes/translations. +Maybe more integrations of knowledge checks, other browser info +Getting creative with quizzing. + +Bundles, resource bundles. Currently turned off in the sandbox. +CB: How should badges be represented in a bundle? +If you have 3 courses, when and how should the badge appear? + +Idea: bar at the bottom. Greyscale before completion, colorized after. +TP: can we share any displays/UX screenshots of other clients displaying badges? +TODO: Work with Charlie to find examples of badging for the team. + +For the first iteration, this will live solely in Northpass. +Dev work from Walmart: they will need to pass/insert info into the webview. diff --git a/CustomerNotes/Walmart_Luminate.md b/CustomerNotes/Walmart_Luminate.md index d7ea9788..048e149d 100644 --- a/CustomerNotes/Walmart_Luminate.md +++ b/CustomerNotes/Walmart_Luminate.md @@ -122,3 +122,12 @@ Questions from Stephanie: * Luminate's biggest concern is upkeep. Version Control. They make a ton of changes to the products. They need to update the content quickly and effectively. Example: Screenshot in one lesson but what if it is in different lessons etc. + + +## 03/29/2023 + +### Design Process + +Looking for a June 1st launch. First Wednesday of June. June 7th hard deadline. +Material Design icons +Jessica isn't aware of how detailed we can customize things. Maybe send her screenshots? diff --git a/Scripts/API_Tests/get_courses.py b/Scripts/API_Tests/get_courses.py index 93e8e9dc..935068f7 100644 --- a/Scripts/API_Tests/get_courses.py +++ b/Scripts/API_Tests/get_courses.py @@ -7,7 +7,8 @@ import Apikeys def get_course(): count = 0 apiKey = Apikeys.walmartprod - live_courses = [] + courses = [] + category_ids = [] while True: count += 1 @@ -22,17 +23,26 @@ def get_course(): for response in data["data"]: status = response["attributes"]["status"] - if status == "live": - name = response["attributes"]["name"] - live_courses.append(name) - with open("/Users/normrasmussen/Downloads/courses.txt", "a") as write: - write.write("\n") - write.write(name) + uuid = response["id"] + name = response["attributes"]["name"] + + course_url = f"https://walmart.northpass.com/app/courses/{uuid}" + cat_id = response["relationships"]["categories"]["data"] + for item in cat_id: + categoryid = item["id"] + print(categoryid) + courses.append(name) + with open("/Users/normrasmussen/Downloads/courses.csv", "a") as write: + write.write("\n") + write.write(name+","+status+","+uuid) if "next" not in nextlink: break - print(live_courses) + #print(courses) +# https://walmart.northpass.com/app/courses/ +def get_category_name(category_ids): + pass if __name__ == "__main__": get_course()