Notes and cleaned up folders
This commit is contained in:
@ -16,6 +16,14 @@
|
|||||||
</div>
|
</div>
|
||||||
{% include "training_events_index" %}
|
{% include "training_events_index" %}
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-xs-12 col-sm-12">
|
||||||
|
<div class="np-resource-title" style='font-size: 2rem;'>
|
||||||
|
Fulfillment Webinars
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% include "fullfilment_events_index" %}
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12 col-sm-12">
|
<div class="col-xs-12 col-sm-12">
|
||||||
<div class="np-resource-title" style='font-size: 2rem;'>
|
<div class="np-resource-title" style='font-size: 2rem;'>
|
||||||
@ -24,14 +32,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% include "other_events_index" %}
|
{% include "other_events_index" %}
|
||||||
<div class="row">
|
|
||||||
<div class="col-xs-12 col-sm-12">
|
|
||||||
<div class="np-resource-title" style='font-size: 2rem;'>
|
|
||||||
Fulfillment Webinars
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% include "fullfilment_events_index" %}
|
|
||||||
</main>
|
</main>
|
||||||
{% include "footer" %}
|
{% include "footer" %}
|
||||||
|
|
||||||
|
|||||||
@ -154,3 +154,36 @@ How much:
|
|||||||
* How many became new accounts
|
* How many became new accounts
|
||||||
* Are they interacting with new core-functionality
|
* Are they interacting with new core-functionality
|
||||||
* Have they added new users?
|
* 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
|
||||||
|
|||||||
40
Scripts/API_Tests/getallgroups.js
Normal file
40
Scripts/API_Tests/getallgroups.js
Normal file
@ -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 = '<option value='+ groupName +'>'+ groupName+'</option>';
|
||||||
|
$('#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);
|
||||||
|
})
|
||||||
|
}
|
||||||
@ -1,8 +0,0 @@
|
|||||||
import requests
|
|
||||||
import Apikeys
|
|
||||||
|
|
||||||
def thisfunc(arg):
|
|
||||||
pass
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
thisfunc()
|
|
||||||
Reference in New Issue
Block a user