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>