diff --git a/Custom_Templates/customer_templates/SPS_Commerce/training_events.html.liquid b/Custom_Templates/customer_templates/SPS_Commerce/training_events.html.liquid
index cd4bd0c0..b9ddb896 100644
--- a/Custom_Templates/customer_templates/SPS_Commerce/training_events.html.liquid
+++ b/Custom_Templates/customer_templates/SPS_Commerce/training_events.html.liquid
@@ -16,6 +16,14 @@
{% include "training_events_index" %}
+
+
+
+ Fulfillment Webinars
+
+
+
+ {% include "fullfilment_events_index" %}
@@ -24,14 +32,6 @@
{% include "other_events_index" %}
-
-
-
- Fulfillment Webinars
-
-
-
- {% include "fullfilment_events_index" %}
{% include "footer" %}
diff --git a/CustomerNotes/Pipedrive.md b/CustomerNotes/Pipedrive.md
index fe174247..f4b0597c 100644
--- a/CustomerNotes/Pipedrive.md
+++ b/CustomerNotes/Pipedrive.md
@@ -154,3 +154,36 @@ How much:
* How many became new accounts
* Are they interacting with new core-functionality
* Have they added new users?
+
+## 03/21/2023
+
+### Post Launch with Kaisa
+
+First big item, Localization:
+
+* Localization and localized sites. Confirm that we received all the strings.
+* Second question: how do we upload localized tutorial. This would happen in course properties and strings.
+
+Webinars:
+
+* Webinars page. They would like to bring it under Northpass. Similar to the rest of Northpass.
+* But she needs to bring in widgets & code from their page.
+* These would be pre-recorded. Similar to video tutorials, you go to the course intro page and then are asked to signin.
+* Can we look into an integration to upload webinars directly? LiveStorm auto uploads to Vidyard.
+ TODO: Find an endpoint to auto-create courses/activities.
+
+User Profiles:
+
+* When you click users, they want something available to users. Wants to know the best way to setup.
+* Kaisa to send what she would like on this page.
+
+Design:
+
+* Can we change some elements in the non-Pipedrive academy? They would need more CTAs etc.
+
+Feedback from clients:
+
+* Missing search button for non-logged in users.
+* Ask product to make search results available to non-authenticated users.
+
+Start up weekly meetings with Kaisa for 10am on Tuesday
diff --git a/Scripts/API_Tests/getallgroups.js b/Scripts/API_Tests/getallgroups.js
new file mode 100644
index 00000000..fecb43a3
--- /dev/null
+++ b/Scripts/API_Tests/getallgroups.js
@@ -0,0 +1,40 @@
+document.addEventListener("DOMContentLoaded", function() {
+ getAllGroups();
+});
+
+const apiKey = 'session["key"]';
+const groups= [];
+const getAllGroups = async (num) => {
+ if(num === 1){
+ }
+ let page = num;
+
+ await axios({
+ method: 'get',
+ url: `https://api.northpass.com/v2/groups?page=${page}`,
+ headers: {
+ 'accept': '*/*',
+ 'x-api-key': apiKey,
+ 'content-type': 'application/json'
+ }
+ })
+ .then(async (res) => {
+ if (res.data.links.next != null) {
+ page++;
+ for (let i = 0; i < res.data.data.length; i++) {
+ let groupName = res.data.data[i].attributes.name;
+ selectInput = '';
+ $('#groups').append(selectInput);
+ groups.push(res.data.data[i].attributes.name);
+ }
+ await getAllGroups(page);
+ } else {
+ for (let i = 0; i < res.data.data.length; i++) {
+ groups.push(res.data.data[i].attributes.name);
+ }
+ }
+ })
+ .catch(err => {
+ console.log(err);
+ })
+}
diff --git a/Scripts/getrequests.py b/Scripts/getrequests.py
deleted file mode 100644
index 38c076bf..00000000
--- a/Scripts/getrequests.py
+++ /dev/null
@@ -1,8 +0,0 @@
-import requests
-import Apikeys
-
-def thisfunc(arg):
- pass
-
-if __name__ == "__main__":
- thisfunc()