Cleaned up todos list to make it more organized. Started updating some pipedrive templates for their team, and added a group for Zenjob's authenticated users. Chubb's Header Dropdown needed an extra space.

This commit is contained in:
Norm Rasmussen
2024-02-22 18:42:09 -05:00
parent c1d3e60f4b
commit 81c01e29a1
7 changed files with 8040 additions and 31 deletions

View File

@ -135,7 +135,7 @@
<li><a href="/app">Home</a></li>
<li><a href="/app/dashboard">Dashboard</a></li>
<li><a href="/app/catalog">Catalog</a></li>
<li><a href="https://chubbeducation.com/olc-info">FAQ/ User Guides</a></li>
<li><a href="https://chubbeducation.com/olc-info">FAQ / User Guides</a></li>
<li><a href="https://secure.chubb.com/">Chubb Agent Portal</a></li>
<li><a href="https://chubbeducation.com/">chubbeducation.com</a></li>
</ul>

View File

@ -34,7 +34,7 @@
<a class="footer-links-section-item lang-fr" href="https://www.pipedrive.com/fr/newsroom">Newsroom</a>
<a class="footer-links-section-item lang-br" href="https://www.pipedrive.com/en/newsroom">Newsroom</a>
</div>
<div class="footer-links-section">
<p class="footer-links-section-title">
<span class="lang-en">Product</span>
@ -79,7 +79,7 @@
<a class="footer-links-section-item lang-fr" href="https://developers.pipedrive.com/">API</a>
<a class="footer-links-section-item lang-br" href="https://developers.pipedrive.com/">API</a>
</div>
<div class="footer-links-section">
<p class="footer-links-section-title">
<span class="lang-en">Discover</span>
@ -112,7 +112,7 @@
<a class="footer-links-section-item lang-fr" href="https://www.pipedrive.com/fr/resources">Ressources</a>
<a class="footer-links-section-item lang-br" href="https://www.pipedrive.com/pt/resources">Ferramentas</a>
</div>
<div class="footer-links-section">
<p class="footer-links-section-title">
<span class="lang-en">Help Center</span>
@ -146,7 +146,7 @@
<a class="footer-links-section-item lang-br" href="https://support.pipedrive.com/pt/contact-us">Suporte</a>
</div>
</section>
<section class="footer-bottom">
<div class="footer-bottom-row">
<div class="footer-language-wrapper np-hidden-mobile">
@ -184,7 +184,7 @@
{% endif %}
</div>
</div>
<div class="footer-bottom-row body-s">
<div class="footer-bottom-links">
<p class="footer-bottom-link-text">
@ -211,7 +211,7 @@
<span class="lang-br">Política de privacidade</span>
</a>
</div>
<div class="footer-bottom-text">
<span class="lang-en">Pipedrive is a Web-based Sales CRM.</span>
<span class="lang-de">Pipedrive ist ein webbasiertes Vertriebs-CRM.</span>

View File

@ -1,10 +1,11 @@
{% assign is_in_authenticated_group = false %}
{% for group in current_person.groups %}
{% if group.name == "All Users" or group.id == "6331d115-ea74-418a-99b2-af5c81208fe1" %}
{% if group.name == "All Users" or group.id == "6331d115-ea74-418a-99b2-af5c81208fe1" or group.name == "Internal
Zenjob Testing" or group.id == "940a5d24-32af-45f1-8ed4-8a6b4689d9c9" %}
{% assign is_in_authenticated_group = true %}
{% endif %}
{% endfor %}
{% endfor %}
{% if current_person.email contains "+preview" %}
{% assign is_in_authenticated_group = true %}
@ -21,7 +22,7 @@
<header class="np-header np-header-color">
<div class="np-header-content">
<div class="np-hidden-desktop np-header-mobile-menu-nav">
{% if current_person.signed_in? %}
<button
@ -76,7 +77,7 @@
<li class="np-header-desktop-nav-item">
<a href="/app/catalog" class="np-header-desktop-nav-link trainings-link">
<span data-lang="DE">Trainings</span>
<span data-lang="EN">Trainings</span>
<span data-lang="EN">Trainings</span>
</a>
</li>
<li class="np-header-desktop-nav-item">
@ -94,7 +95,7 @@
<li class="np-header-desktop-nav-item">
<a href="/app/on-the-job" class="np-header-desktop-nav-link videos-link">
<span data-lang="DE">On-The-Job Videos</span>
<span data-lang="EN">On-The-Job Videos</span>
<span data-lang="EN">On-The-Job Videos</span>
</a>
</li>
{% for website_navigation in navigations.header_navigations_external %}
@ -413,7 +414,7 @@ body.mobile-menu-open .np-header {
.header-language-selection.active:after {
transform: translateY(-50%) rotate(180deg);
}
.languages-dropdown {
position:absolute;
top: 66px;
@ -542,7 +543,7 @@ function changeLanguage(lang) {
$(".languages-dropdown").removeClass('show');
$(".header-language-selection").removeClass("active")
// if no local storage,
// if no local storage,
if (localStorageLang == null) {
localStorage.setItem('lang', lang);
}
@ -590,7 +591,7 @@ function setLanguageWorkflow(lang) {
language : lang
};
const schoolID = '{{current_school.id}}'
const schoolID = '{{current_school.id}}'
let workatoEndpoint = ""
if (schoolID == "d4f9d06b-bbe9-4e0a-85ee-eadc10f17914") {
@ -612,4 +613,4 @@ function setLanguageWorkflow(lang) {
});
}
</script>
</script>

View File

@ -409,3 +409,15 @@ Other question from Sophia:
* Can we print from the quiz as both instructor and student.
* If Learners put things in a course - like quiz submissions.
## 2/22/2024
* PD is run by product
* 2024 push for deeper content, follow up training for app and enablement.
- This is geared towards customers >1 year into contract that need more enablement.
- Instead of a full training, make it more modular, smaller bites.
- "need more help with" assessment, or module design, how can we deliver that training?
- Reuben and the CS team - CSMs pushing data to what their clients want to accomplish.
- Blanket promote to all courses?
- Catalog is not turned on. Let's turn it on!
- Send email with follow up items & descriptions.

View File

@ -1,4 +1,5 @@
BASE_URL = "https://gongnxt.gainsightcloud.com/v1/ui/Relationship360?rid="
GONG_URLS = {
"Walmart": "1P05THJ9MQ1NI1RKR6QQ442410ZA26YL3OOG"
"Walmart": "1P05THJ9MQ1NI1RKR6QQ442410ZA26YL3OOG",
"Artera": "1P05THJ9MQ1NI1RKR6WHF2NXWEH8AAXPL2BE",
}

View File

@ -1,20 +1,39 @@
# Random Tasks
*Date is the date the task as assigned.*
## 2/20/2023
-Date is the date the task as assigned.-
* [ ] Send exec-check in for Kat/Emily
* [X] Get understanding of Netradyne Enterprise pricing from Erica/Charles
* [X] Complete Lilas courses review
* [X] Get better understanding from Travis what was discussed in previous HackerRank meetings
* [X] Slack with Lila & Kat about remaining courses for review
* [ ] Confirm with Mohammed the common requests
---------
## 2/21/2023
## 2/20/2024
* [ ] Begin design of Luminate Learning Path completion page
* [ ] Test Weglot in templates for Datasnipper
* [ ] Can we adjust where the button shows up?
* [ ] Can we adjust dynamic elements that translate and are too long?
* [X] Update fonts & Continue button color for TripleSeat.
- [X] Send exec-check in for Kat/Emily
- [X] Get understanding of Netradyne Enterprise pricing from Erica/Charles
- [X] Complete Lilas courses review
- [X] Get better understanding from Travis what was discussed in previous HackerRank meetings
- [X] Slack with Lila & Kat about remaining courses for review
- [X] Confirm with Mohammed the common requests
- [X] Send HackerRank marketing materials/one-pagers
---------
## 2/21/2024
- [ ] Begin design of Luminate Learning Path completion page
- [ ] Test Weglot in templates for Datasnipper
- [ ] Can we adjust where the button shows up?
- [ ] Can we adjust dynamic elements that translate and are too long?
- [X] Update fonts & Continue button color for TripleSeat.
---------
## 2/22/2024
- [X] Chubb Header dropdown - add space to FAQ
- [X] Submit feedback for:
- [X] Transcript page, Chubb online learning center - remove school & entire line
- [X] Check Fonts in table
- [X] Filters colors change - green highlight > Purple, and "clear all" blue > purple
- [X] No name for Kim and Jenelle, but exists for Steve. Could be based on Display Name?
FEAT: Transcripts page - Clickable courses, Export of table "proof for learner", Last activity/last progress.
- [ ] Send Sophia an overview of catalog & include Courtney on email as soft-intro.
- [ ] Update End of Quiz Screens for Courtney at BigIdeas Learning.

7976
mynvim.log Normal file

File diff suppressed because it is too large Load Diff