diff --git a/Custom_Templates/customer_templates/.DS_Store b/Custom_Templates/customer_templates/.DS_Store index 5b561564..b65302b5 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/Pipedrive Learn - CRM/_catalog_courses.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_catalog_courses.html.liquid index 56164f00..dd6fd6ee 100644 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_catalog_courses.html.liquid +++ b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_catalog_courses.html.liquid @@ -18,7 +18,7 @@ {% assign category_uuid = categories_uuids | slice: y %}
-

+

{% assign category_name = categories_names | slice: y %} {% if category_name contains 'Pipedrive courses' %} @@ -38,13 +38,115 @@ Marketingkurse Cursos de Marketing Cours de Marketing - Cursos de Marketing + Cursos de Marketing + {% elsif category_name contains 'Automations' %} + Automations + Automatisierungen + Automatizaciones + Automatisations + Automações + {% elsif category_name contains 'Campaigns' %} + Campaigns + Kampagnen + Campañas + Campagnes + Campanhas + {% elsif category_name contains 'Data import' %} + Data import + Datenimport + Importación de datos + Importation de données + importação de dados + {% elsif category_name contains 'Deals and Sales Pipelines' %} + Deals and Sales Pipelines + Deals und Vertriebspipelines + Tratos y canalizaciones de ventas + Offres et pipelines de ventes + Negociações e Pipelines de Vendas + {% elsif category_name contains 'Documents and Invoicing' %} + Documents and Invoicing + Dokumente und Rechnungen + Documentos y Facturación + Documents et facturation + Documentos e Faturamento + {% elsif category_name contains 'Email and communications' %} + Email and communications + E-Mail und Kommunikation + Correo electrónico y comunicaciones + Courriel et communications + E-mail e comunicações + {% elsif category_name contains 'Insights and reporting' %} + Insights and reporting + Erkenntnisse und Berichterstattung + Resultados e informes + Résultats et rapports + Informações e relatórios + {% elsif category_name contains 'Integrations' %} + Integrations + Integrationen + La integración + L'intégration + Integrações + {% elsif category_name contains 'Lead generation' %} + Lead Generation + Lead Generierung + Generación líder + Génération de leads + Geração de leads + {% elsif category_name contains 'Pipedrive basics' %} + Pipedrive basics + Pipedrive Grundlagen + Pipedrive Gouplagène + Pipedrive gouplagène + Noções básicas do Pipedrive + {% elsif category_name contains 'Pipedrive settings' %} + Pipedrive settings + Pipedrive-Einstellungen + Configuración de Pipedrive + Paramètres Pipedrive + Configurações do Pipedrive + {% elsif category_name contains 'Privacy and security' %} + Privacy and security + Privatsphäre und Sicherheit + Privacidad y seguridad + Confidentialité et sécurité + Privacidade e segurança + {% elsif category_name contains 'Projects' %} + Projects + Projekte + Proyectos + Projets + Projetos + {% elsif category_name contains 'User management' %} + User management + Benutzerverwaltung + Gestión de usuarios + Gestion des utilisateurs + gerenciamento de usuários {% elsif category_name contains 'Spanish' %} - Spanish - Spanisch - Español - Espagnol - Espanhol + + + + + + {% elsif category_name contains 'German' %} + + + + + + {% elsif category_name contains 'French' %} + + + + + + {% elsif category_name contains 'Portuguese' %} + + + + + {% else %} {{ category_name }} {% endif %} @@ -66,7 +168,7 @@

- +
{% for course in courses.in_catalog %} {% assign course_categories = course.categories | map: 'id' %} @@ -81,7 +183,7 @@ {% endfor %}
- + {% if number_of_videos <= 3 %} - - diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_homepage_banner.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_homepage_banner.html.liquid index 1cb237f3..b00fb9a8 100644 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_homepage_banner.html.liquid +++ b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_homepage_banner.html.liquid @@ -3,7 +3,11 @@ banner

- Hi {{ current_person.first_name }}! + Hi {{ current_person.first_name }}! + Hallo {{ current_person.first_name }}! + ¡Hola {{ current_person.first_name }}! + Bonjour {{ current_person.first_name }}! + Oi {{ current_person.first_name }}!

Welcome! We have saved your progress about courses @@ -16,7 +20,7 @@ {% assign in_progress = 0 %} {% assign not_started = 0 %} {% assign completed = 0 %} - + {% for course in courses.in_catalog %} {% if course.ribbon != 'VIDEO' %} {% if course.completed? %} @@ -43,7 +47,7 @@ Em andamento
- +
@@ -59,7 +63,7 @@ Não iniciado
- +
@@ -110,7 +114,7 @@ font-size: 14px; line-height: 25px; } - + @media only screen and (min-width: 768px) { .homepage-banner .green-banner { padding-bottom: 0; diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_video_courses.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_video_courses.html.liquid deleted file mode 100644 index 14c223a5..00000000 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_video_courses.html.liquid +++ /dev/null @@ -1,156 +0,0 @@ -{% assign categories_uuids = "" %} -{% assign categories_names = "" %} -{% for course in courses.in_catalog %} - {% if course.categories.size > 0 and course.ribbon == "VIDEO" %} - {% assign course_categories_ids = course.categories | map: 'id' | join: "|||" %} - {% assign course_categories_names = course.categories | map: 'name' | join: "|||" %} - {% assign categories_uuids = categories_uuids | append: course_categories_ids | append: "|||" %} - {% assign categories_names = categories_names | append: course_categories_names | append: "|||" %} - {% endif %} -{% endfor %} -{% assign categories_uuids = categories_uuids | split: "|||" | uniq %} -{% assign categories_names = categories_names | split: "|||" | uniq %} - -
- {% include "video_filter", uuids: categories_uuids, names: categories_names %} - {% for x in (1..categories_uuids.size) %} - {% assign number_of_videos = 0 %} - {% assign y = x | minus: 1 %} - {% assign category_uuid = categories_uuids | slice: y %} -
-
-

- {{ categories_names | slice: y }} -

-
- - Show less - - - - - - - View all - - - - - -
-
- -
- {% for course in courses.in_catalog %} - {% assign course_categories = course.categories | map: 'id' %} - {% if course.ribbon == "VIDEO" %} - {% for cat in course_categories %} - {% if category_uuid contains cat %} - {% assign number_of_videos = number_of_videos | plus: 1 %} - {% include "cards_video" %} - {% endif %} - {% endfor %} - {% endif %} - {% endfor %} -
-
- - {% if number_of_videos <= 3 %} - - {% endif %} - {% endfor %} -
- - - - diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_video_filter.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_video_filter.html.liquid deleted file mode 100644 index ba944d81..00000000 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_video_filter.html.liquid +++ /dev/null @@ -1,103 +0,0 @@ -{% if uuids.size > 0 %} -
-
- All topics - - - - -
- {% for x in (1..uuids.size) %} - {% assign y = x | minus: 1 %} -
- {{ names | slice: y }} -
- {% endfor %} -
-
-{% endif %} - - - - diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/br-catalog.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/br-catalog.html.liquid index 4ec17088..ba35048c 100644 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/br-catalog.html.liquid +++ b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/br-catalog.html.liquid @@ -1,3 +1,4 @@ +{% comment %} skip-auth {% endcomment %} {% if current_person.signed_in? == false and current_school.sso_active? == false %} {% else %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/br-homepage.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/br-homepage.html.liquid index 860ebbf7..c9cae27f 100644 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/br-homepage.html.liquid +++ b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/br-homepage.html.liquid @@ -1,3 +1,4 @@ +{% comment %} skip-auth {% endcomment %} {% if current_person.signed_in? == false and current_school.sso_active? == false %} {% else %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/de-catalog.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/de-catalog.html.liquid index 4ec17088..77944fa9 100644 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/de-catalog.html.liquid +++ b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/de-catalog.html.liquid @@ -1,3 +1,5 @@ +{% comment %} skip-auth {% endcomment %} + {% if current_person.signed_in? == false and current_school.sso_active? == false %} {% else %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/de-homepage.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/de-homepage.html.liquid index 860ebbf7..c9cae27f 100644 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/de-homepage.html.liquid +++ b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/de-homepage.html.liquid @@ -1,3 +1,4 @@ +{% comment %} skip-auth {% endcomment %} {% if current_person.signed_in? == false and current_school.sso_active? == false %} {% else %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/es-catalog.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/es-catalog.html.liquid index 4ec17088..ba35048c 100644 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/es-catalog.html.liquid +++ b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/es-catalog.html.liquid @@ -1,3 +1,4 @@ +{% comment %} skip-auth {% endcomment %} {% if current_person.signed_in? == false and current_school.sso_active? == false %} {% else %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/es-homepage.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/es-homepage.html.liquid index 860ebbf7..c9cae27f 100644 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/es-homepage.html.liquid +++ b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/es-homepage.html.liquid @@ -1,3 +1,4 @@ +{% comment %} skip-auth {% endcomment %} {% if current_person.signed_in? == false and current_school.sso_active? == false %} {% else %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/fr-catalog.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/fr-catalog.html.liquid index 4ec17088..ba35048c 100644 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/fr-catalog.html.liquid +++ b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/fr-catalog.html.liquid @@ -1,3 +1,4 @@ +{% comment %} skip-auth {% endcomment %} {% if current_person.signed_in? == false and current_school.sso_active? == false %} {% else %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/fr-homepage.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/fr-homepage.html.liquid index 860ebbf7..c9cae27f 100644 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/fr-homepage.html.liquid +++ b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/fr-homepage.html.liquid @@ -1,3 +1,4 @@ +{% comment %} skip-auth {% endcomment %} {% if current_person.signed_in? == false and current_school.sso_active? == false %} {% else %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/login-page.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/login-page.html.liquid deleted file mode 100644 index 751e39b9..00000000 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/login-page.html.liquid +++ /dev/null @@ -1,101 +0,0 @@ -{% comment %} skip-auth {% endcomment %} -{% include 'header' %} - -
- -
- -{% include 'footer' %} - - - diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/welcome.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/welcome.html.liquid deleted file mode 100644 index c49d103e..00000000 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/welcome.html.liquid +++ /dev/null @@ -1,151 +0,0 @@ -{% comment %} Page for SSO school to setup first name {% endcomment %} - -{% if current_person.signed_in? == false or current_person.first_name %} - -{% else %} -
-
-
-
-
- -
- -
-
-
-
-
-
- - - - -{% endif %} diff --git a/Custom_Templates/customer_templates/Skuid/.DS_Store b/Custom_Templates/customer_templates/Skuid/.DS_Store deleted file mode 100644 index 5008ddfc..00000000 Binary files a/Custom_Templates/customer_templates/Skuid/.DS_Store and /dev/null differ diff --git a/Custom_Templates/customer_templates/Skuid/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/Skuid/_sub_navigation.html.liquid index 9ebbf50c..58055c81 100644 --- a/Custom_Templates/customer_templates/Skuid/_sub_navigation.html.liquid +++ b/Custom_Templates/customer_templates/Skuid/_sub_navigation.html.liquid @@ -28,13 +28,15 @@
{% endif %} {% endfor %} - {%- comment -%}
- - - Certification - -
{%- endcomment -%} + {%- comment -%} {% if current_person.signed_in? %} +
+ + + Certification + +
+ {% endif %} {%- endcomment -%}
diff --git a/Custom_Templates/customer_templates/Skuid/certification.html.liquid b/Custom_Templates/customer_templates/Skuid/certification.html.liquid index 0e2cfd32..f8bb150b 100644 --- a/Custom_Templates/customer_templates/Skuid/certification.html.liquid +++ b/Custom_Templates/customer_templates/Skuid/certification.html.liquid @@ -1,4 +1,9 @@ -{% comment %} skip-auth {% endcomment %} +{% if current_person.signed_in? == false %} + +{% endif %} + {% include "header" %}
{% if current_person.signed_in? %} @@ -45,26 +50,65 @@ {% if current_person.properties.cert_status == 'Default' %}
-
Ready to be Skuid Certified?
+
Ready to be Skuid Certified?
-
The Skuid - Certified Builder Exam assumes knowledge in topics from Level 1, Level 2, Deploy and Manage Skuid Apps in Salesforce, and the Explore More learning paths within Skuid Skool.
+
The Skuid - Certified Builder Exam assumes knowledge in topics from these learning paths: Level 1, Level 2, Deploy and Manage Skuid Apps in Salesforce, and Explore More.
+ {%- comment -%} Skuid Skool {%- endcomment -%}
-
Click below to register for your exam.
- - **Important: Please make sure you use the same email that you are using in Skuid Skool. If you don't, you may not be able to take the exam or get credit for the certification. - +
Click below to agree to the terms and register for your exam.
-
- I have read and understand the Skuid Terms and Agreements* +
+
+ + **Important: Make sure you register with the same email that you use in Skuid Skool.** + +
+ If you don't, you may not be able to take the exam or get credit for the certification. +
+
+ I have read and understand the Skuid Terms and Agreements* +
-
+ {%- comment -%} Test Button 1 {%- endcomment -%} + {%- comment -%} +
{%- endcomment -%} + + {%- comment -%} Test Button 2 {%- endcomment -%} + {%- comment -%}
+ + +
{%- endcomment -%} + + {%- comment -%} Test Button 3 {%- endcomment -%} +
+ +
- exam-registration-image + Once you’ve registered, refresh this page to access the prep materials. + + {%- comment -%} Learn more at skuidskool.com/certification {%- endcomment -%} + + exam-registration-image
{% endif %} @@ -95,7 +139,7 @@
Skuid Certification Exam Prep
-
Prep, practice, or schedule you exam.
+
Prep, practice, and take your exam.
{%- comment -%} {% if render_practice == true %}{% endif %} {%- endcomment -%} @@ -116,21 +160,32 @@
Exam Not Ready
- This button will activate when you've received your exam confirmation email + This button will activate when you've received your exam confirmation email.
{% elsif current_person.properties.cert_status == 'Exists-qm' %}
- Take Exam + Take Exam
Ready? Take your exam to become certified.
{% endif %}
+ + + Not seeing what you expect? Refresh this page. +
+ {% endif %} @@ -138,8 +193,8 @@ {% if current_person.properties.cert_status == 'Pass' %} {% endif %} @@ -147,8 +202,8 @@ {% comment %}=============================================== FAILED ======================================================{% endcomment %} {% if current_person.properties.cert_status == 'Fail' %} -
-
Exam failed.
+
+
Exam failed.
If you'd like to try again, certification@skuid.com.
@@ -182,9 +237,21 @@ Get recertified
{%- endcomment -%} +
-{% include "footer" %} +{%- comment -%} {% include "footer" %} {%- endcomment -%}