diff --git a/Custom_Templates/customer_templates/.DS_Store b/Custom_Templates/customer_templates/.DS_Store index 9f0d59a7..3b38f3db 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/_account_avatar.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_account_avatar.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_account_avatar.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_account_avatar.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_account_deletion.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_account_deletion.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_account_deletion.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_account_deletion.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_account_desktop_view.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_account_desktop_view.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_account_desktop_view.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_account_desktop_view.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_account_form.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_account_form.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_account_form.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_account_form.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_account_mobile_view.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_account_mobile_view.html.liquid new file mode 100644 index 00000000..6ac8c007 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_account_mobile_view.html.liquid @@ -0,0 +1,17 @@ +
+ + {% form_authenticity_token %} +
+
+ {% render "account_form", form: form, version: "mobile" %} +
+
+
+
+ {% include "account_avatar", version: "mobile" %} +
+
+ +
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_cards_course.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_cards_course.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_cards_course.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_cards_course.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_cards_course_homepage.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_cards_course_homepage.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_cards_course_homepage.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_cards_course_homepage.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_cards_generic.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_cards_generic.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_cards_generic.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_cards_generic.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_cards_learning_path.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_cards_learning_path.html.liquid new file mode 100644 index 00000000..424a81ab --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_cards_learning_path.html.liquid @@ -0,0 +1,70 @@ +
+
+
+ {{ learning_path.name }} +
+
+ +
{% t shared.learning_path.title %}
+
+ {{ learning_path.items.count }} {% t .items %} +
+
+
+
{% t shared.learning_path.title %}
+ +
+ +
+

+ {{ learning_path.name }} +

+ +
+ {{ learning_path.instructor_names }} +
+ +
+ {{ learning_path.description }} +
+ +
+ {% t shared.progress, count: learning_path.progress %} +
+ +
+
+
+
+ + +
+
+
+
+
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_cards_training_event.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_cards_training_event.html.liquid new file mode 100644 index 00000000..1176157e --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_cards_training_event.html.liquid @@ -0,0 +1,45 @@ +
+
+
+

+ {{ training_event.title }} +

+
+ {% t shared.event_types, key: training_event.event_type %} +
+
+ +
+
+
+ {{ training_event.sessions.first.day }} +
+
+
+ {{ training_event.sessions.first.month }} +
+
+ {{ training_event.sessions.first.year }} +
+
+
+
+
+
+
+ + + {% t .sessions, count: training_event.sessions.size %} + + + {% t shared.view %} + +
+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_cards_video.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_cards_video.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_cards_video.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_cards_video.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_catalog_courses.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_catalog_courses.html.liquid similarity index 95% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_catalog_courses.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_catalog_courses.html.liquid index dd6fd6ee..2bb3fdb5 100644 --- a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_catalog_courses.html.liquid +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_catalog_courses.html.liquid @@ -1,12 +1,14 @@ {% assign categories_uuids = "" %} {% assign categories_names = "" %} {% for course in courses.in_catalog %} - {% if course.categories.size > 0 and course.ribbon != "VIDEO" and course.properties.featured == false %} - {% 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 %} + {% if course.properties.course_language == lang %} + {% if course.categories.size > 0 and course.ribbon != "VIDEO" and course.properties.featured == false %} + {% 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 %} + {%endif%} {% endfor %} {% assign categories_uuids = categories_uuids | split: "|||" | uniq %} {% assign categories_names = categories_names | split: "|||" | uniq %} @@ -174,10 +176,12 @@ {% assign course_categories = course.categories | map: 'id' %} {% if course.ribbon != "VIDEO" and course.properties.featured == false %} {% for cat in course_categories %} + {% if course.properties.course_language == lang%} {% if category_uuid contains cat %} {% assign number_of_videos = number_of_videos | plus: 1 %} {% include "cards_course" %} {% endif %} + {%endif%} {% endfor %} {% endif %} {% endfor %} @@ -221,10 +225,12 @@ {% assign any_course = false %}
{% for course in courses.in_catalog %} + {% if course.properties.course_language == lang%} {% if course.ribbon != "VIDEO" and course.properties.featured %} {% include "cards_course" %} {% assign any_course = true %} {% endif %} + {%endif%} {% endfor %}
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_catalog_faq.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_catalog_faq.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_catalog_faq.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_catalog_faq.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_catalog_filter.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_catalog_filter.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_catalog_filter.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_catalog_filter.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_catalog_page_info.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_catalog_page_info.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_catalog_page_info.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_catalog_page_info.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_certificates_info_column.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_certificates_info_column.html.liquid new file mode 100644 index 00000000..61adfaba --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_certificates_info_column.html.liquid @@ -0,0 +1,4 @@ +
+ {% include "certificates_verification" %} + {% include "certificates_metadata" %} +
diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_certificates_metadata.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_certificates_metadata.html.liquid new file mode 100644 index 00000000..9f4a1dba --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_certificates_metadata.html.liquid @@ -0,0 +1,59 @@ +
+
+ +
+ + {% if certificate.issuer_name_enabled? %} + +
+ {% endif %} + + +
+ +
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_certificates_preview.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_certificates_preview.html.liquid new file mode 100644 index 00000000..6357b621 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_certificates_preview.html.liquid @@ -0,0 +1,35 @@ + + +
+
+
+ +
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_certificates_top_bar.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_certificates_top_bar.html.liquid new file mode 100644 index 00000000..74a7ae41 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_certificates_top_bar.html.liquid @@ -0,0 +1,44 @@ +
+
+
+

+ {{certificate.certificate_name}} +

+
+
+ {% if certificate.linkedin_sharing_enabled and current_person.signed_in? and certificate.learner_uuid == current_person.id %} + + + {% t .share %} + + {% endif %} + + {% if certificate.generating_pdf %} +
+ +
+ {% else %} + + {% t .download %} + + {% endif %} +
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_certificates_verification.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_certificates_verification.html.liquid new file mode 100644 index 00000000..4fc19415 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_certificates_verification.html.liquid @@ -0,0 +1,15 @@ +
+
+
+ +
+
+

+ {{certificate.verification_title}} +

+

+ {{certificate.verification_description}} +

+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_cookie_banner.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_cookie_banner.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_cookie_banner.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_cookie_banner.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_course_activity_locked.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_activity_locked.html.liquid new file mode 100644 index 00000000..386393d5 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_activity_locked.html.liquid @@ -0,0 +1,4 @@ + + + {{ activity.title }} + diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_course_activity_unlocked.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_activity_unlocked.html.liquid new file mode 100644 index 00000000..30c03305 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_activity_unlocked.html.liquid @@ -0,0 +1,15 @@ +{% if course.enrolled? %} + + {{ activity.title }} + +{% else%} + + {{ activity.title }} + +{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_course_categories.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_categories.html.liquid new file mode 100644 index 00000000..6cfe9010 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_categories.html.liquid @@ -0,0 +1,10 @@ +

+ {% t .header %} +

+
+ {% for category in course.categories %} +
+ {{ category.name }} +
+ {% endfor %} +
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_course_cover.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_cover.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_course_cover.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_course_cover.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_course_description.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_description.html.liquid new file mode 100644 index 00000000..269f9216 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_description.html.liquid @@ -0,0 +1,6 @@ +

+ {% t .header, key: current_school.course_vocabulary %} +

+
+ {{ course.full_description }} +
diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_course_desktop_view.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_desktop_view.html.liquid new file mode 100644 index 00000000..e16fee16 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_desktop_view.html.liquid @@ -0,0 +1,40 @@ +
+
+ {% include "course_header" %} +
+
+
+
+ {{ course.name }} + {% include "course_description" %} + + {% if course.categories.any? %} +
+ {% include "course_categories" %} +
+ {% endif %} + + {% if course.instructors.any? %} +
+ {% include "course_instructors" %} +
+ {% endif %} + + {% if course.events.any? %} +
+ {% include "course_events" %} +
+ {% endif %} +
+
+
+ {% include "course_progress_and_cta" %} +
+ {% include "course_outline" %} +
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_course_events.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_events.html.liquid new file mode 100644 index 00000000..5fa80eef --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_events.html.liquid @@ -0,0 +1,28 @@ +

+ {% t .header %} +

+
+ {% for event in course.events %} +
+ +
+
+ {{ event.title }} +
+
+ {% t shared.event_types, key: event.event_type %} +
+
+ {{ event.sessions.first.time_period }} {{ event.sessions.first.time_zone }} +
+
+
+ {% endfor %} +
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_course_green_card.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_green_card.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_course_green_card.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_course_green_card.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_course_header.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_header.html.liquid new file mode 100644 index 00000000..84820ec4 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_header.html.liquid @@ -0,0 +1,16 @@ +
+ {{ current_school.course_vocabulary }} + + +
+
+ + + + {{ course.name }} +
+{{ course.name }} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_course_instructor_card.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_instructor_card.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_course_instructor_card.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_course_instructor_card.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_course_instructors.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_instructors.html.liquid new file mode 100644 index 00000000..8b608928 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_instructors.html.liquid @@ -0,0 +1,22 @@ +

+ {% t .header %} +

+
+ {% for instructor in course.instructors %} +
+ {{ instructor.name }} +
+
+ {{ instructor.name }} +
+ +
+
+ {% endfor %} +
diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_course_mobile_view.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_mobile_view.html.liquid new file mode 100644 index 00000000..7f31ff35 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_mobile_view.html.liquid @@ -0,0 +1,40 @@ +
+ {% include "course_header" %} +
+ {% include "course_progress_and_cta" %} +
+
+ +{% if course.progress == 0 %} +
+ {% include "course_description" %} +
+
+ {% include "course_outline" %} +
+{% else %} +
+ {% include "course_outline" %} +
+
+ {% include "course_description" %} +
+{% endif %} + +{% if course.categories.any? %} +
+ {% include "course_categories" %} +
+{% endif %} + +{% if course.instructors.any? %} +
+ {% include "course_instructors" %} +
+{% endif %} + +{% if course.events.any? %} +
+ {% include "course_events" %} +
+{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_course_outline.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_outline.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_course_outline.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_course_outline.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_course_progress_and_cta.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_progress_and_cta.html.liquid new file mode 100644 index 00000000..1c3db9fa --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_progress_and_cta.html.liquid @@ -0,0 +1,46 @@ +
+
+ {% t .header %} +
+
+
+
+
+ +
+ {% t shared.progress, count: course.progress %} +
+
+ +{% if course.learner_can_retake? %} +
+ {% form_authenticity_token %} + +
+{% else %} + + {% if course.enrolled? == false %} + {% t shared.enroll %} + {% elsif course.started? == false %} + {% t shared.course.start, key: current_school.course_vocabulary %} + {% elsif course.completed? %} + {% t shared.course.view, key: current_school.course_vocabulary %} + {% else %} + {% t shared.continue %} + {% endif %} + +{% endif %} + diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_course_recommended_courses.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_recommended_courses.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_course_recommended_courses.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_course_recommended_courses.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_course_version_outdated_alert.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_version_outdated_alert.html.liquid new file mode 100644 index 00000000..03e245ab --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_version_outdated_alert.html.liquid @@ -0,0 +1,7 @@ +{% if courses.include_courses_to_restart? %} + +{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_course_version_outdated_popup.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_version_outdated_popup.html.liquid new file mode 100644 index 00000000..71795884 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_course_version_outdated_popup.html.liquid @@ -0,0 +1,33 @@ +
+
+ + +
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_courses_catalog.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_courses_catalog.html.liquid new file mode 100644 index 00000000..ea1e9ea4 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_courses_catalog.html.liquid @@ -0,0 +1,16 @@ +{% if courses.in_catalog.any? %} +
+ {% for course in courses.in_catalog %} +
+ {% include "cards_course" with course %} +
+ {% endfor %} +
+{% else %} + {% capture message %} + {% t shared.zero_state.courses.catalog, + key: current_school.course_vocabulary + %} + {% endcapture %} + {% include "courses_zero_state", message: message %} +{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_courses_index.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_courses_index.html.liquid new file mode 100644 index 00000000..19e7671b --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_courses_index.html.liquid @@ -0,0 +1,16 @@ +{% if courses.enrolled.any? %} +
+ {% for course in courses.enrolled %} +
+ {% include "cards_course" with course %} +
+ {% endfor %} +
+{% else %} + {% capture message %} + {% t shared.zero_state.courses.index, + key: current_school.course_vocabulary + %} + {% endcapture %} + {% include "courses_zero_state", message: message %} +{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_courses_zero_state.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_courses_zero_state.html.liquid new file mode 100644 index 00000000..26e371f7 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_courses_zero_state.html.liquid @@ -0,0 +1,6 @@ +
+
+ {{ message }} +
+ {{ message }} +
diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_faq.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_faq.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_faq.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_faq.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_filter_checkbox.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_filter_checkbox.html.liquid new file mode 100644 index 00000000..5cbcbd07 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_filter_checkbox.html.liquid @@ -0,0 +1,10 @@ + + diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_filter_dropdown.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_filter_dropdown.html.liquid new file mode 100644 index 00000000..e7a954bb --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_filter_dropdown.html.liquid @@ -0,0 +1,33 @@ +
+ +
diff --git a/Custom_Templates/customer_templates/Pipedrive - Learn/_filter_select.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_filter_select.html.liquid new file mode 100644 index 00000000..d006c0df --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_filter_select.html.liquid @@ -0,0 +1,22 @@ +{% if params.q %} + +{% endif %} + + + + diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_footer.html.liquid b/Custom_Templates/customer_templates/Pipedrive - Learn/_footer.html.liquid similarity index 99% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_footer.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - Learn/_footer.html.liquid index a31a344f..062fc8f8 100644 --- a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_footer.html.liquid +++ b/Custom_Templates/customer_templates/Pipedrive - Learn/_footer.html.liquid @@ -34,7 +34,7 @@ Newsroom Newsroom - + - + - + - + - +
@@ -332,6 +330,7 @@ object-fit: cover; border-radius: 50%; margin-right: 10px; + margin-left: 10px; } .header-profile-menu { display: flex; @@ -427,6 +426,8 @@ document.querySelector('#side-menu-tutorials')?.classList.add('side-menu-link-active'); document.querySelector('.header-navigation-item[href="/app/video-tutorials"]')?.classList.add('header-navigation-item-active'); } + + changeHeaderImageLink(); }); // Languages dropdown hover effect @@ -436,4 +437,14 @@ document.querySelector(".language-dropdown-wrapper").addEventListener('mouseleave', () => { document.querySelector(".languages-dropdown").classList.remove('show'); }) + + function changeHeaderImageLink() { + let userStorageLanguage = window.localStorage.getItem('academy-language'); + + if (userStorageLanguage != 'en') { + document.querySelector(".header-logo").href = `/app/${userStorageLanguage}-homepage` + } else { + document.querySelector(".header-logo").href = `/app` + } + } diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_header_minimal.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_header_minimal.html.liquid new file mode 100644 index 00000000..6b72cdb2 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_header_minimal.html.liquid @@ -0,0 +1,17 @@ +
+ + {% if current_school.logo_url %} + + {% else %} + + {{ current_school.name }} + + {% endif %} + +
+ +{% include "messages" %} diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_header_mobile_menu.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_header_mobile_menu.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_header_mobile_menu.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_header_mobile_menu.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_homepage_banner.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_homepage_banner.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_homepage_banner.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_homepage_banner.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_homepage_banner_new_person.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_homepage_banner_new_person.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_homepage_banner_new_person.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_homepage_banner_new_person.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_homepage_faq.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_homepage_faq.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_homepage_faq.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_homepage_faq.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_homepage_generic_cards.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_homepage_generic_cards.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_homepage_generic_cards.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_homepage_generic_cards.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_homepage_latest_courses.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_homepage_latest_courses.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_homepage_latest_courses.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_homepage_latest_courses.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_homepage_page_info.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_homepage_page_info.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_homepage_page_info.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_homepage_page_info.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_homepage_recommended.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_homepage_recommended.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_homepage_recommended.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_homepage_recommended.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_banners.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_banners.html.liquid new file mode 100644 index 00000000..11a1810c --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_banners.html.liquid @@ -0,0 +1,5 @@ +{% if learning_path.new_content_available? %} + {% include "learning_path_new_content_banner" %} +{% else %} + {% include "learning_path_completed_banner" %} +{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_certificate.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_certificate.html.liquid new file mode 100644 index 00000000..3a282c5e --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_certificate.html.liquid @@ -0,0 +1,17 @@ +{% if learning_path.has_certificate? %} + {% if learning_path.certificate_completed? %} +
+ +
+ {% include "learning_path_certificate_content" %} +
+
+ {% else %} +
+ {% include "learning_path_certificate_content" %} +
+ {% endif %} +{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_certificate_content.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_certificate_content.html.liquid new file mode 100644 index 00000000..3feafd59 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_certificate_content.html.liquid @@ -0,0 +1,19 @@ +
+ +

+ {{ learning_path.certificate_name }} +

+ {% if learning_path.certificate_completed? %} + + {% endif %} +
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_completed_banner.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_completed_banner.html.liquid new file mode 100644 index 00000000..1c146f6e --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_completed_banner.html.liquid @@ -0,0 +1,13 @@ +
+ +
+

{% t .headline %}

+

{% t .description %}

+
+ {% if learning_path.certificate_link %} + {% t .actions.certificate %} + {% endif %} + {% t .actions.more_courses %} +
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_course.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_course.html.liquid new file mode 100644 index 00000000..5f7aff84 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_course.html.liquid @@ -0,0 +1,56 @@ +{% if learning_path.enrolled? and course.unlocked? %} +
+ +
+ {{ course.name }} +
+
+ {{ course.name }} +
+ {% if course.instructors %} +
+ {{ course.instructors }} +
+ {% endif %} +
+ {% t shared.progress, count: course.progress %} +
+
+ + {% if course.optional? %} +
+ {% t shared.optional %} +
+ {% endif %} +
+
+{% else %} +
+
+ {{ course.name }} +
+
+ {{ course.name }} +
+
+ {% if course.optional? %} +
+ {% t shared.optional %} +
+ {% endif %} +
+
+{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_description.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_description.html.liquid new file mode 100644 index 00000000..6b1fb3a0 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_description.html.liquid @@ -0,0 +1,6 @@ +

+ {% t .about %} +

+
+ {{ learning_path.description }} +
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_desktop_content.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_desktop_content.html.liquid new file mode 100644 index 00000000..e9ca85d9 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_desktop_content.html.liquid @@ -0,0 +1,21 @@ +
+
+
+ {{ learning_path.name }} +
+ {% include "learning_path_description" %} + {% include "learning_path_instructors" %} +
+
+
+
+
+ {% include "learning_path_progress_and_cta" %} +
+ {% include "learning_path_outline" %} +
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_desktop_header.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_desktop_header.html.liquid new file mode 100644 index 00000000..6f4c112c --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_desktop_header.html.liquid @@ -0,0 +1,12 @@ +
+
+ {% t shared.learning_path.title %} + +
+
+ + + + {{ learning_path.name }} +
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_desktop_view.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_desktop_view.html.liquid new file mode 100644 index 00000000..8447443e --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_desktop_view.html.liquid @@ -0,0 +1,2 @@ +{% include "learning_path_desktop_header" %} +{% include "learning_path_desktop_content" %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_instructors.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_instructors.html.liquid new file mode 100644 index 00000000..a8342301 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_instructors.html.liquid @@ -0,0 +1,26 @@ +{% if learning_path.instructors.any? %} +
+

+ {% t shared.instructors %} +

+
+ {% for instructor in learning_path.instructors %} +
+ {{ instructor.name }} +
+
+ {{ instructor.name }} +
+ +
+
+ {% endfor %} +
+
+{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_mobile_content.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_mobile_content.html.liquid new file mode 100644 index 00000000..92ffd4c8 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_mobile_content.html.liquid @@ -0,0 +1,19 @@ +{% if learning_path.in_progress? %} + {% include "learning_path_outline" %} +
+ {% include "learning_path_description" %} +
+{% else %} +
+ {% include "learning_path_description" %} +
+
+ {% include "learning_path_outline" %} +
+{% endif %} + +{% if learning_path.instructors.any? %} +
+ {% include "learning_path_instructors" %} +
+{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_mobile_header.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_mobile_header.html.liquid new file mode 100644 index 00000000..2bf66a5a --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_mobile_header.html.liquid @@ -0,0 +1,17 @@ +
+
+ {% t shared.learning_path.title %} + +
+
+ {{ learning_path.name }} +
+ {{ learning_path.name }} +
+ {% include "learning_path_progress_and_cta" %} +
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_mobile_view.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_mobile_view.html.liquid new file mode 100644 index 00000000..0e22feb9 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_mobile_view.html.liquid @@ -0,0 +1,2 @@ +{% include "learning_path_mobile_header" %} +{% include "learning_path_mobile_content" %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_new_content_banner.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_new_content_banner.html.liquid new file mode 100644 index 00000000..2bc02d46 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_new_content_banner.html.liquid @@ -0,0 +1,12 @@ +
+
+

{% t .headline %}

+

{% t .description %}

+
+ {% learning_path_next_step_button learning_path, class: "np-learning-path-banner-action np-learning-path-banner-action--primary" %} + {% if learning_path.certificate_link %} + {% t .actions.view_certificate %} + {% endif %} +
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_outline.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_outline.html.liquid new file mode 100644 index 00000000..22ddd573 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_outline.html.liquid @@ -0,0 +1,10 @@ +
+ {% for item in learning_path.items %} + {% if item.course? %} + {% include "learning_path_course", course: item %} + {% elsif item.training_event? %} + {% include "learning_path_training_session", training_session: item %} + {% endif %} + {% endfor %} + {% include "learning_path_certificate" %} +
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_progress_and_cta.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_progress_and_cta.html.liquid new file mode 100644 index 00000000..1d90a2a7 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_progress_and_cta.html.liquid @@ -0,0 +1,20 @@ +{% if learning_path.enrolled? %} +
+
+ {% t .progress %} +
+
+
+
+
+
+ {% t shared.progress, count: learning_path.progress %} +
+
+{% endif %} + +{% learning_path_next_step_button learning_path, class: "np-top-button np-button-font-color np-button np-button-big" %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_summary_desktop_view.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_summary_desktop_view.html.liquid new file mode 100644 index 00000000..05961c52 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_summary_desktop_view.html.liquid @@ -0,0 +1,3 @@ +{% include "learning_path_desktop_header" %} +{% include "learning_path_banners" %} +{% include "learning_path_desktop_content" %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_summary_mobile_view.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_summary_mobile_view.html.liquid new file mode 100644 index 00000000..f30a09eb --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_summary_mobile_view.html.liquid @@ -0,0 +1,5 @@ +
+ {% include "learning_path_banners" %} +
+{% include "learning_path_mobile_header" %} +{% include "learning_path_mobile_content" %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_training_session.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_training_session.html.liquid new file mode 100644 index 00000000..f796cdf4 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_path_training_session.html.liquid @@ -0,0 +1,53 @@ +{% if learning_path.enrolled? and training_session.unlocked? %} +
+ +
+ +
+
{{ training_session.name }}
+
{{ training_session.instructors }}
+
+ {{ training_session.time }} {{ training_session.time_zone }} +
+
+ + {% if training_session.optional? %} +
+ {% t shared.optional %} +
+ {% endif %} +
+
+{% else %} +
+
+ +
+
{{ training_session.name }}
+
{{ training_session.caption }}
+
+ {% if training_session.optional? %} +
+ {% t shared.optional %} +
+ {% endif %} +
+
+{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_paths_index.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_paths_index.html.liquid new file mode 100644 index 00000000..a4681210 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_learning_paths_index.html.liquid @@ -0,0 +1,14 @@ +
+ {% if items.any? %} + {% for learning_path in items %} + {% include "cards_learning_path" with learning_path %} + {% endfor %} + {% else %} +
+
+ {% t .empty %} +
+ {% t .empty %} +
+ {% endif %} +
diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_messages.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_messages.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_messages.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_messages.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_new_academy_popup.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_new_academy_popup.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_new_academy_popup.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_new_academy_popup.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_opinions.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_opinions.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_opinions.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_opinions.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_profile_settings_initial.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_profile_settings_initial.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_profile_settings_initial.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_profile_settings_initial.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_profile_settings_regular.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_profile_settings_regular.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_profile_settings_regular.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_profile_settings_regular.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_search_result.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_search_result.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_search_result.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_search_result.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_search_zero_state.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_search_zero_state.html.liquid new file mode 100644 index 00000000..4e52c6fb --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_search_zero_state.html.liquid @@ -0,0 +1,13 @@ +
+
+
+

+ {% t .nothing_found %} +

+
+ {% t .empty %} +
+
+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_seo_course.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_seo_course.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_seo_course.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_seo_course.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_seo_faq.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_seo_faq.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_seo_faq.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_seo_faq.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_seo_logo.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_seo_logo.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_seo_logo.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_seo_logo.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_sso_login_widget.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_sso_login_widget.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_sso_login_widget.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_sso_login_widget.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_sub_navigation.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_sub_navigation.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_sub_navigation.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_events_dashboard.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_events_dashboard.html.liquid new file mode 100644 index 00000000..7aeb19ce --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_events_dashboard.html.liquid @@ -0,0 +1,9 @@ +
+ {% if training_events.enrolled.any? %} + {% for training_event in training_events.enrolled %} + {% include "cards_training_event" with training_event %} + {% endfor %} + {% else %} + {% include "training_events_zero_state" %} + {% endif %} +
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_events_filter.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_events_filter.html.liquid new file mode 100644 index 00000000..d4892278 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_events_filter.html.liquid @@ -0,0 +1,53 @@ +
+ +
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_events_index.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_events_index.html.liquid new file mode 100644 index 00000000..ff93b1c8 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_events_index.html.liquid @@ -0,0 +1,13 @@ +
+ {% if training_events.available.any? %} +
+ {% for training_event in training_events.available %} +
+ {% include "cards_training_event" with training_event %} +
+ {% endfor %} +
+ {% else %} + {% include "training_events_zero_state" %} + {% endif %} +
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_events_zero_state.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_events_zero_state.html.liquid new file mode 100644 index 00000000..076b789e --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_events_zero_state.html.liquid @@ -0,0 +1,9 @@ +
+
+ {% t .empty %} +
+ {% t .empty %} +
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_calendars.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_calendars.html.liquid new file mode 100644 index 00000000..6c758b73 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_calendars.html.liquid @@ -0,0 +1,52 @@ + diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_cta.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_cta.html.liquid new file mode 100644 index 00000000..d777c5f6 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_cta.html.liquid @@ -0,0 +1,53 @@ +{% if training_session.approved? %} +
+ + {% t .registered %} +
+{% elsif training_session.pending? %} +
+ {% t .pending %} +
+{% elsif training_session.denied? %} +
+ {% t .denied %} +
+{% elsif training_session.too_late? %} +
+ {% t .too_late %} +
+{% elsif training_session.no_seats? %} +
+ {% t .no_seats %} +
+{% endif %} +
+
+
+ {% form_authenticity_token %} + + {% if training_session.internal? and training_session.approved? %} + {% if features.training_events_google_calendar? %} + {% include "training_session_calendars" %} + + {% else %} + + {% endif %} + + + {% endif %} + + {% if training_session.not_registered? %} + + {% endif %} +
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_date.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_date.html.liquid new file mode 100644 index 00000000..48694035 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_date.html.liquid @@ -0,0 +1,14 @@ +
+
+
+ {{ training_session.day }} +
+
+
+ {{ training_session.month }} +
+
+ {{ training_session.year }} +
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_description.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_description.html.liquid new file mode 100644 index 00000000..73be4cf4 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_description.html.liquid @@ -0,0 +1,6 @@ +

+ {% t .header %} +

+
+ {{ training_event.description }} +
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_desktop_view.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_desktop_view.html.liquid new file mode 100644 index 00000000..5c1abfec --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_desktop_view.html.liquid @@ -0,0 +1,40 @@ +
+ {% include "training_session_header" %} +
+
+
+
+
+
+ {% include "training_session_details" %} +
+
+ {% include "training_session_cta" %} +
+
+
+
+ {% include "training_session_description" %} +
+
+
+
+
+
+ {% t shared.more_sessions %} +
+ {% if training_event.sessions.size > 1 %} + {% include "training_session_more_sessions" %} + {% else %} +
+ {% t .empty %} +
+ {% t .empty %} +
+
+ {% endif %} +
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_details.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_details.html.liquid new file mode 100644 index 00000000..ae23b7ac --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_details.html.liquid @@ -0,0 +1,24 @@ +
+ {% include "training_session_date" %} + +
+ + {{ training_session.time_period }} {{ training_session.time_zone }} +
+ + {% if training_session.location %} +
+ + {{ training_session.location }} +
+ {% endif %} + + {% if training_session.session_url %} + + {% endif %} +
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_header.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_header.html.liquid new file mode 100644 index 00000000..10434cfa --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_header.html.liquid @@ -0,0 +1,10 @@ +
+ {% t shared.event_types, key: training_event.event_type %} + +
+
+ + + + {{ training_event.title }} +
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_mobile_view.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_mobile_view.html.liquid new file mode 100644 index 00000000..00455d4e --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_mobile_view.html.liquid @@ -0,0 +1,22 @@ +
+
+ {% include "training_session_header" %} +
+ {% include "training_session_details" %} +
+ {% include "training_session_cta" %} +
+
+ +
+ {% include "training_session_description" %} +
+ +{% if training_event.sessions.size > 1 %} +
+
+ {% t shared.more_sessions %} +
+ {% include "training_session_more_sessions" %} +
+{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_more_sessions.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_more_sessions.html.liquid new file mode 100644 index 00000000..6cfafa87 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_more_sessions.html.liquid @@ -0,0 +1,3 @@ +{% for session in training_event.sessions %} + {% include "training_session_tile", current_session: training_session %} +{% endfor %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_tile.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_tile.html.liquid new file mode 100644 index 00000000..e5ad8714 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_training_session_tile.html.liquid @@ -0,0 +1,17 @@ +{% if current_session.id != session.id %} + + +
+
+ {{ session.month }} {{ session.day }}, {{ session.year }} +
+
+ {{ session.time_period }} {{ session.time_zone }} +
+
+ +
+{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/_video_courses.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_video_courses.html.liquid new file mode 100644 index 00000000..14c223a5 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_video_courses.html.liquid @@ -0,0 +1,156 @@ +{% 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 - UserLearn/_video_filter.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_video_filter.html.liquid new file mode 100644 index 00000000..ba944d81 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_video_filter.html.liquid @@ -0,0 +1,103 @@ +{% 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/_video_tutorial_cover.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_video_tutorial_cover.html.liquid similarity index 90% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_video_tutorial_cover.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_video_tutorial_cover.html.liquid index af7d5a7f..577e303d 100644 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_video_tutorial_cover.html.liquid +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_video_tutorial_cover.html.liquid @@ -1,12 +1,20 @@
diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/_video_tutorials_courses.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_video_tutorials_courses.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/_video_tutorials_courses.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_video_tutorials_courses.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_video_tutorials_faq.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_video_tutorials_faq.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_video_tutorials_faq.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_video_tutorials_faq.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_video_tutorials_filter.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_video_tutorials_filter.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_video_tutorials_filter.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_video_tutorials_filter.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_video_tutorials_page_info.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_video_tutorials_page_info.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_video_tutorials_page_info.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_video_tutorials_page_info.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_webinars_courses.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_webinars_courses.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_webinars_courses.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_webinars_courses.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_webinars_filters.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_webinars_filters.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_webinars_filters.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_webinars_filters.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_webinars_hero_image.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_webinars_hero_image.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_webinars_hero_image.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_webinars_hero_image.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_webinars_start_today.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/_webinars_start_today.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/_webinars_start_today.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/_webinars_start_today.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/account.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/account.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/account.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/account.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/auth_url_email.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/auth_url_email.html.liquid new file mode 100644 index 00000000..a413959c --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/auth_url_email.html.liquid @@ -0,0 +1,59 @@ +
+
+ {% include "header_minimal" %} +
+
+ {% form_authenticity_token %} +
+ {% t shared.welcome_to_school, school_name: current_school.name %} +
+
+ {% t .headline, key: current_school.course_vocabulary %} +
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/auth_url_employee.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/auth_url_employee.html.liquid new file mode 100644 index 00000000..c8d8adf7 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/auth_url_employee.html.liquid @@ -0,0 +1,59 @@ +
+
+ {% include "header_minimal" %} +
+
+ {% form_authenticity_token %} +
+ {% t shared.welcome_to_school, school_name: current_school.name %} +
+
+ {% t .headline, key: current_school.course_vocabulary %} +
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/auth_url_phone_number.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/auth_url_phone_number.html.liquid new file mode 100644 index 00000000..aafae119 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/auth_url_phone_number.html.liquid @@ -0,0 +1,40 @@ +
+
+ {% include "header_minimal" %} +
+
+
{% t shared.welcome_to_school, school_name: current_school.name %}
+
{% t .headline, key: current_school.course_vocabulary %}
+ {% form_authenticity_token %} +
+ + +
+
+ + +
+ +
+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/auth_url_terms.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/auth_url_terms.html.liquid new file mode 100644 index 00000000..a7087db2 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/auth_url_terms.html.liquid @@ -0,0 +1,74 @@ +
+
+ {% include "header_minimal" %} +
+
+
{% t shared.welcome_to_school, school_name: current_school.name %}
+
{% t .headline, key: current_school.course_vocabulary %}
+ {% form_authenticity_token %} +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + + +
+ +
+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/br-catalog.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/br-catalog.html.liquid new file mode 100644 index 00000000..c25f3897 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/br-catalog.html.liquid @@ -0,0 +1,43 @@ +{% comment %} skip-auth {% endcomment %} +{% if current_person.signed_in? == false and current_school.sso_active? == false %} + + {% else %} + {% include "header" %} + +
+ {% include "green_banner_image", + banner_title: 'Cursos da Academia', + banner_text: 'Bem-vindo(a) aos cursos da Academia do Pipedrive! Aqui você vai encontrar programas de treinamento e cursos para ajudar você e sua equipe no desenvolvimento do conhecimento sobre CRM e vendas. Os cursos incluem vídeo aulas que ensinarão você a melhorar cada passo do seu processo de vendas.', + banner_button_text: 'Desbloquear cursos', + banner_button_link: "#sso-widget", + banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp" + %} + + {% include "catalog_courses", lang: "br" %} + {% include "catalog_page_info" %} + {% include "opinions" %} + {% include 'catalog_faq' %} + + {% include "green_banner_image_alt", + banner_title: 'Como aproveitar o Pipedrive ao máximo?', + banner_text: ' + O CRM Pipedrive CRM está cheio de ferramentas inteligentes para melhorar seus processos de vendas e de marketing. Nossa plataforma CRM oferece tudo - dos recursos de automatização do marketing aos relatórios detalhados sobre vendas.
+ Simplifique o acompanhamento de leads e clientes potenciais com a visualização intuitiva de pipeline do Pipedrive. Receba notificações quando seus prospectos estiverem prontos para fechar um negócio para fazer o follow up no momento certo.

+ Centralize todas as informações sobre clientes e faça a integração com as suas ferramentas de marketing digital. Adicione campos personalizados para contatos e separe-os por indústria para garantir que você foque nos leads certos.
+ Comece a usar o Aprenda com o Pipedrive hoje para aproveitar ao máximo a sua poderosa ferramenta CRM e manter os negócios fluindo.
+
', + banner_button_text: 'Comece hoje mesmo', + banner_button_link: "#sso-widget", + banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" + %} +
+ + {% include "footer" %} + {% endif %} + {% if current_person.signed_in? == false and current_school.sso_active? %} + + {% endif %} + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/br-homepage.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/br-homepage.html.liquid new file mode 100644 index 00000000..eb6f5451 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/br-homepage.html.liquid @@ -0,0 +1,65 @@ +{% comment %} skip-auth {% endcomment %} +{% if current_person.signed_in? == false and current_school.sso_active? == false %} + + {% else %} + {% include "header" %} + +
+ {% if current_person.signed_in? %} + {% assign new_person = true %} + {% for course in courses.enrolled %} + {% if course.started? %} + {% assign new_person = false %} + {% break %} + {% endif %} + {% endfor %} + {% if new_person %} + {% include 'homepage_banner_new_person' %} + {% include 'homepage_recommended' %} + {% include "homepage_generic_cards" %} + {% include "homepage_page_info" %} + {% include "opinions" %} + {% include 'homepage_faq' %} + {% else %} + {% include 'homepage_banner' %} + {% include 'homepage_latest_courses' %} + + {% endif %} + {% else %} + {% include "green_banner_text", + banner_title: 'Aprenda com o Pipedrive', + banner_text: 'Bem-vindo(a) ao Aprenda com o Pipedrive! Aqui você encontra vídeos de treinamento para ajudar você a melhorar suas habilidades de vendas e de gestão de CRM. Explore cursos aprofundados sobre vendas, marketing e CRM e tutoriais curtos sobre ferramentas específicas.', + banner_button_text: 'Cadastre-se agora', + banner_button_link: "#sso-widget" + %} + + {% include "homepage_generic_cards" %} + {% include "homepage_page_info" %} + {% include "opinions" %} + {% include 'homepage_faq' %} + {% endif %} + + {% include "green_banner_image_alt", + banner_title: 'Como aproveitar o Pipedrive ao máximo', + banner_text: ' + O CRM Pipedrive CRM está cheio de ferramentas inteligentes para melhorar seus processos de vendas e de marketing. Nossa plataforma CRM oferece tudo - dos recursos de automatização do marketing aos relatórios detalhados sobre vendas.
+ Simplifique o acompanhamento de leads e clientes potenciais com a visualização intuitiva de pipeline do Pipedrive. Receba notificações quando seus prospectos estiverem prontos para fechar um negócio para fazer o follow up no momento certo.

+ Centralize todas as informações sobre clientes e faça a integração com as suas ferramentas de marketing digital. Adicione campos personalizados para contatos e separe-os por indústria para garantir que você foque nos leads certos.
+ Comece a usar o Aprenda com o Pipedrive hoje para aproveitar ao máximo a sua poderosa ferramenta CRM e manter os negócios fluindo.
+
', + banner_button_text: 'Comece hoje mesmo', + banner_button_link: "#sso-widget", + banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" + %} +
+ + {% include "footer" %} + {% endif %} + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/br-video-tutorials.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/br-video-tutorials.html.liquid new file mode 100644 index 00000000..d3f76f63 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/br-video-tutorials.html.liquid @@ -0,0 +1,40 @@ +{% comment %} skip-auth {% endcomment %} +{% if current_person.signed_in? == false and current_school.sso_active? == false %} + + {% else %} + {% include "header" %} + +
+ {% include "green_banner_image", + banner_title: 'Tutoriais em vídeo', + banner_text: 'Bem-vindo(a) à seção de tutoriais em vídeo da Pipedrive, onde você encontrará recursos de treinamento em vídeo e CRM para ajudar seu negócio a crescer com nosso software de CRM.', + banner_button_text: 'Inscreva-se nos cursos', + banner_button_link: "#sso-widget", + banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-webinars.webp" + %} + + {% include "video_tutorials_courses", lang: "br" %} + {% include "video_tutorials_page_info" %} + {% include 'opinions' %} + {% include 'video_tutorials_faq' %} + + {% unless current_person.signed_in? %} + {% include "green_banner_text_bg_image", + banner_title: 'Desbloquear vídeos de graça', + banner_text: "", + banner_button_text: 'Cadastre-se', + banner_button_link: "#sso-widget" + %} + {% endunless %} +
+ + {% include "footer" %} + {% endif %} + + {% if current_person.signed_in? == false and current_school.sso_active? %} + + {% endif %} + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/catalog.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/catalog.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/catalog.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/catalog.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/course.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/course.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/course.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/course.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/courses.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/courses.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/courses.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/courses.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/dashboard.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/dashboard.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/dashboard.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/dashboard.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/de-catalog.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/de-catalog.html.liquid new file mode 100644 index 00000000..9b0f119c --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/de-catalog.html.liquid @@ -0,0 +1,45 @@ +{% comment %} skip-auth {% endcomment %} + +{% if current_person.signed_in? == false and current_school.sso_active? == false %} + + {% else %} + {% include "header" %} + +
+ {% include "green_banner_image", + banner_title: 'Academy-Kurse', + banner_text: 'Willkommen bei den Academy Kursen von Pipedrive! Hier finden Sie virtuelle Trainingsprogramme und Online-Video-Kurse, die Sie und Ihr Vertriebsteam dabei unterstützen, Ihre CRM- und Vertriebsfähigkeiten auszubauen. Dazu gehören detaillierte Video-Kurse, die Ihnen dabei helfen, jede einzelne Phase Ihres Vertriebsprozesses zu verbessern.', + banner_button_text: 'Kurse freischalten', + banner_button_link: "#sso-widget", + banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp" + %} + + {% include "catalog_courses", lang:"de" %} + {% include "catalog_page_info" %} + {% include "opinions" %} + {% include 'catalog_faq' %} + + + {% include "green_banner_image_alt", + banner_title: 'Wie machen Sie das Beste aus Pipedrive?', + banner_text: ' + Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur Marketingautomatisierung bis zu detaillierten Vertriebsberichten.
+ Behalten Sie Ihre Leads und potenziellen Kunden mit der intuitiven Pipeline-Ansicht von Pipedrive im Blick. Erhalten Sie Benachrichtigungen, wenn Ihre Interessenten bereit sind, einen Deal abzuschließen, damit Sie genau im richtigen Moment nachfassen können.

+ Zentralisieren Sie alle Kundeninformationen an einem Ort und integrieren Sie sie mit Ihren Tools für digitales Marketing. Ergänzen Sie benutzerdefinierte Felder für Kontakte und teilen Sie sie nach Branchen auf, damit Sie auf jeden Fall die heißesten Leads ansprechen.
+ Fangen Sie heute an, Pipedrive zu nutzen, um das Beste aus Ihrem leistungsstarken CRM-Tool zu machen und dafür zu sorgen, dass die Deals fließen.
+
', + banner_button_text: 'Beginnen Sie heute', + banner_button_link: "#sso-widget", + banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" + %} +
+ + {% include "footer" %} + {% endif %} + {% if current_person.signed_in? == false and current_school.sso_active? %} + + {% endif %} + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/de-homepage.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/de-homepage.html.liquid new file mode 100644 index 00000000..20f73688 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/de-homepage.html.liquid @@ -0,0 +1,64 @@ +{% comment %} skip-auth {% endcomment %} +{% if current_person.signed_in? == false and current_school.sso_active? == false %} + + {% else %} + {% include "header" %} + +
+ {% if current_person.signed_in? %} + {% assign new_person = true %} + {% for course in courses.enrolled %} + {% if course.started? %} + {% assign new_person = false %} + {% break %} + {% endif %} + {% endfor %} + {% if new_person %} + {% include 'homepage_banner_new_person' %} + {% include 'homepage_recommended' %} + {% include "homepage_generic_cards" %} + {% include "homepage_page_info" %} + {% include "opinions" %} + {% include 'homepage_faq' %} + {% else %} + {% include 'homepage_banner' %} + {% include 'homepage_latest_courses' %} + + {% endif %} + {% else %} + {% include "green_banner_text", + banner_title: 'Pipedrive Learn', + banner_text: 'Willkommen bei Pipedrive Learn! Hier finden Sie Übungsvideos, um Ihre Fähigkeiten in CRM-Management und Vertrieb auszubauen. Beginnend bei Kursen zum CRM über spezielle Vertriebsfragen bis hin zu Marketing und Kurz-Tutorials zu bestimmten CRM-Tools bietet Pipedrive Learn alles was Sie suchen.', + banner_button_text: 'Jetzt anmelden', + banner_button_link: "#sso-widget" %} + + {% include "homepage_generic_cards"%} + {% include "homepage_page_info" %} + {% include "opinions" %} + {% include 'homepage_faq' %} + {% endif %} + + {% include "green_banner_image_alt", + banner_title: 'Wie Sie das Beste aus Pipedrive herausholen', + banner_text: ' + Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur Marketingautomatisierung bis zu detaillierten Vertriebsberichten.
+ Behalten Sie Ihre Leads und potenziellen Kunden mit der intuitiven Pipeline-Ansicht von Pipedrive im Blick. Erhalten Sie Benachrichtigungen, wenn Ihre Interessenten bereit sind, einen Deal abzuschließen, damit Sie genau im richtigen Moment nachfassen können.

+ Zentralisieren Sie alle Kundeninformationen an einem Ort und integrieren Sie sie mit Ihren Tools für digitales Marketing. Ergänzen Sie benutzerdefinierte Felder für Kontakte und teilen Sie sie nach Branchen auf, damit Sie auf jeden Fall die heißesten Leads ansprechen.
+ Fangen Sie heute an, Pipedrive zu nutzen, um das Beste aus Ihrem leistungsstarken CRM-Tool zu machen und dafür zu sorgen, dass die Deals fließen.
+
', + banner_button_text: 'Beginnen Sie heute', + banner_button_link: "#sso-widget", + banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" + %} +
+ + {% include "footer" %} + {% endif %} + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/de-video-tutorials.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/de-video-tutorials.html.liquid new file mode 100644 index 00000000..1e2cc525 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/de-video-tutorials.html.liquid @@ -0,0 +1,40 @@ +{% comment %} skip-auth {% endcomment %} +{% if current_person.signed_in? == false and current_school.sso_active? == false %} + + {% else %} + {% include "header" %} + +
+ {% include "green_banner_image", + banner_title: 'Video-Tutorials', + banner_text: 'Willkommen im Video-Tutorial-Bereich von Pipedrive. Hier finden Sie Videos und andere CRM-Schulungsressourcen, die Ihr Unternehmen beim Wachstum mit unserer CRM-Software unterstützen.', + banner_button_text: 'Für Kurse anmelden', + banner_button_link: "#sso-widget", + banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-webinars.webp" + %} + + {% include "video_tutorials_courses", lang: "de" %} + {% include "video_tutorials_page_info" %} + {% include 'opinions' %} + {% include 'video_tutorials_faq' %} + + {% unless current_person.signed_in? %} + {% include "green_banner_text_bg_image", + banner_title: 'Videos kostenlos freischalten', + banner_text: "", + banner_button_text: 'Anmelden', + banner_button_link: "#sso-widget" + %} + {% endunless %} +
+ + {% include "footer" %} + {% endif %} + + {% if current_person.signed_in? == false and current_school.sso_active? %} + + {% endif %} + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/es-catalog.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/es-catalog.html.liquid new file mode 100644 index 00000000..016ffb29 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/es-catalog.html.liquid @@ -0,0 +1,43 @@ +{% comment %} skip-auth {% endcomment %} +{% if current_person.signed_in? == false and current_school.sso_active? == false %} + + {% else %} + {% include "header" %} + +
+ {% include "green_banner_image", + banner_title: 'Cursos de la Academia', + banner_text: '¡Bienvenido a los cursos de la Academia Pipedrive! Aquí encontrarás programas de capacitación virtual y cursos de video en línea para ayudarte a ti y a tu equipo de ventas a desarrollar tus habilidades de ventas y CRM. Estos cursos incluyen lecciones detalladas en video que te capacitarán para mejorar todas y cada una de las etapas de tu proceso de ventas', + banner_button_text: 'Desbloquear cursos', + banner_button_link: "#sso-widget", + banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp" + %} + + {% include "catalog_courses", lang: "es" %} + {% include "catalog_page_info" %} + {% include "opinions" %} + {% include 'catalog_faq' %} + + {% include "green_banner_image_alt", + banner_title: '¿Cómo aprovechar al máximo Pipedrive?', + banner_text: ' + El CRM de Pipedrive está repleto de herramientas inteligentes para mejorar tus procesos de ventas y marketing. Nuestra plataforma de CRM ofrece todo, desde funciones de automatización de marketing hasta informes de ventas detallados.
+ Mantente perfectamente al día con tus prospectos y clientes potenciales con la vista del embudo intuitiva de Pipedrive. Recibe una notificación cuando tus clientes potenciales estén listos para cerrar un trato para que puedas darle seguimiento en el momento preciso.

+ Centraliza toda la información de tus clientes bajo un mismo techo e intégrala con tus herramientas de marketing digital. Añade campos personalizados para los contactos y sepáralos por industrias para asegurarte de que te diriges a los prospectos más interesados.
+ Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.
+
', + banner_button_text: 'Empieza hoy mismo', + banner_button_link: "#sso-widget", + banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png", + %} +
+ + {% include "footer" %} + {% endif %} + {% if current_person.signed_in? == false and current_school.sso_active? %} + + {% endif %} + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/es-homepage.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/es-homepage.html.liquid new file mode 100644 index 00000000..4006df57 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/es-homepage.html.liquid @@ -0,0 +1,65 @@ +{% comment %} skip-auth {% endcomment %} +{% if current_person.signed_in? == false and current_school.sso_active? == false %} + + {% else %} + {% include "header" %} + +
+ {% if current_person.signed_in? %} + {% assign new_person = true %} + {% for course in courses.enrolled %} + {% if course.started? %} + {% assign new_person = false %} + {% break %} + {% endif %} + {% endfor %} + {% if new_person %} + {% include 'homepage_banner_new_person' %} + {% include 'homepage_recommended' %} + {% include "homepage_generic_cards" %} + {% include "homepage_page_info" %} + {% include "opinions" %} + {% include 'homepage_faq' %} + {% else %} + {% include 'homepage_banner' %} + {% include 'homepage_latest_courses' %} + + {% endif %} + {% else %} + {% include "green_banner_text", + banner_title: 'Pipedrive Aprende', + banner_text: '¡Bienvenido a Aprender con Pipedrive! Aquí encontrarás videos de capacitación de CRM para ayudarte a aprender habilidades de ventas y administración de CRM. Explora todo, desde cursos detallados de ventas, marketing y CRM hasta tutoriales rápidos sobre herramientas específicas de CRM.', + banner_button_text: 'Regístrate ahora', + banner_button_link: "#sso-widget" + %} + + {% include "homepage_generic_cards" %} + {% include "homepage_page_info" %} + {% include "opinions" %} + {% include 'homepage_faq' %} + {% endif %} + + {% include "green_banner_image_alt", + banner_title: 'Cómo sacar el máximo partido a Pipedrive', + banner_text: ' + El CRM de Pipedrive está repleto de herramientas inteligentes para mejorar tus procesos de ventas y marketing. Nuestra plataforma de CRM ofrece todo, desde funciones de automatización de marketing hasta informes de ventas detallados.
+ Mantente perfectamente al día con tus prospectos y clientes potenciales con la vista del embudo intuitiva de Pipedrive. Recibe una notificación cuando tus clientes potenciales estén listos para cerrar un trato para que puedas darle seguimiento en el momento preciso.

+ Centraliza toda la información de tus clientes bajo un mismo techo e intégrala con tus herramientas de marketing digital. Añade campos personalizados para los contactos y sepáralos por industrias para asegurarte de que te diriges a los prospectos más interesados.
+ Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.
+
', + banner_button_text: 'Empieza hoy mismo', + banner_button_link: "#sso-widget", + banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png", + %} +
+ + {% include "footer" %} + {% endif %} + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/es-video-tutorials.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/es-video-tutorials.html.liquid new file mode 100644 index 00000000..87297e5e --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/es-video-tutorials.html.liquid @@ -0,0 +1,40 @@ +{% comment %} skip-auth {% endcomment %} +{% if current_person.signed_in? == false and current_school.sso_active? == false %} + + {% else %} + {% include "header" %} + +
+ {% include "green_banner_image", + banner_title: 'Tutoriales en vídeo', + banner_text: 'Bienvenido a la sección de tutoriales en vídeo de Pipedrive, donde encontrarás recursos de formación en vídeo y CRM para ayudar a tu empresa a crecer con nuestro software CRM.', + banner_button_text: 'Inscríbete en los cursos', + banner_button_link: "#sso-widget", + banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-webinars.webp" + %} + + {% include "video_tutorials_courses", lang: "es" %} + {% include "video_tutorials_page_info" %} + {% include 'opinions' %} + {% include 'video_tutorials_faq' %} + + {% unless current_person.signed_in? %} + {% include "green_banner_text_bg_image", + banner_title: 'Desbloquear vídeos gratis', + banner_text: "", + banner_button_text: 'Regístrate', + banner_button_link: "#sso-widget" + %} + {% endunless %} +
+ + {% include "footer" %} + {% endif %} + + {% if current_person.signed_in? == false and current_school.sso_active? %} + + {% endif %} + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/forgot_password.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/forgot_password.html.liquid new file mode 100644 index 00000000..3d65513f --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/forgot_password.html.liquid @@ -0,0 +1,25 @@ +
+
+ {% include "header_minimal" %} +
+
+ {% form_authenticity_token %} +
+ + +
+ +
+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/fr-catalog.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/fr-catalog.html.liquid new file mode 100644 index 00000000..3417ba85 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/fr-catalog.html.liquid @@ -0,0 +1,45 @@ +{% comment %} skip-auth {% endcomment %} +{% if current_person.signed_in? == false and current_school.sso_active? == false %} + + {% else %} + {% include "header" %} + +
+ + {% include "green_banner_image", + banner_title: 'Cours de l'Académie', + banner_text: 'Bienvenue dans les cours de l’Académie Pipedrive ! Cet espace de formation en ligne vous donne accès à des cours en vidéo qui vous aideront, vous et votre équipe commerciale, à développer vos compétences en vente et en CRM. Nos vidéos didactiques vous fourniront toutes les clés pour optimiser chacune des étapes de votre processus commercial.', + banner_button_text: 'Débloquer les cours', + banner_button_link: "#sso-widget", + banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp" + %} + + {% include "catalog_courses", lang: "fr" %} + {% include "catalog_page_info" %} + {% include "opinions" %} + {% include 'catalog_faq' %} + + + {% include "green_banner_image_alt", + banner_title: 'Comment tirer pleinement parti de Pipedrive ?', + banner_text: ' + Pipedrive est un CRM débordant d’outils intelligents, pensés pour améliorer vos processus de vente et de marketing. Notre plateforme de GRC embarque tous les outils possibles, allant du marketing automation aux reporting analytiques.
+ Suivez vos leads et vos prospects depuis la vue en pipeline intuitive de Pipedrive. Recevez des notifications chaque fois que vos prospects signalent leur intérêt afin de les relancer au moment idéal.

+ Centralisez l’ensemble de vos données clients dans un espace unique, et intégrez-y vos outils de marketing digital. Ajoutez des champs personnalisés à vos contacts et groupez-les par secteur d’activité pour affiner votre ciblage.
+ Explorez dès aujourd’hui nos formations Pipedrive Learn pour libérer tout le potentiel de votre logiciel CRM et faire fructifier votre relation client.
+
', + banner_button_text: 'Commencez dès aujourd'hui', + banner_button_link: "#sso-widget", + banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" + %} +
+ + {% include "footer" %} + {% endif %} + {% if current_person.signed_in? == false and current_school.sso_active? %} + + {% endif %} + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/fr-homepage.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/fr-homepage.html.liquid new file mode 100644 index 00000000..084004ff --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/fr-homepage.html.liquid @@ -0,0 +1,67 @@ +{% comment %} skip-auth {% endcomment %} +{% if current_person.signed_in? == false and current_school.sso_active? == false %} + + {% else %} + {% include "header" %} + +
+ {% if current_person.signed_in? %} + {% assign new_person = true %} + {% for course in courses.enrolled %} + {% if course.started? %} + {% assign new_person = false %} + {% break %} + {% endif %} + {% endfor %} + {% if new_person %} + {% include 'homepage_banner_new_person' %} + {% include 'homepage_recommended' %} + {% include "homepage_generic_cards" %} + {% include "homepage_page_info" %} + {% include "opinions" %} + {% include 'homepage_faq' %} + {% else %} + {% include 'homepage_banner' %} + {% include 'homepage_latest_courses' %} + + {% endif %} + {% else %} + {% include "green_banner_text", + banner_title: 'Pipedrive Learn', + banner_text: 'Bienvenue dans Pipedrive Learn ! Cet espace de formation au CRM vous propose des vidéos didactiques pour optimiser votre relation client et développer vos compétences commerciales. Suivez nos cours approfondis sur la vente, le marketing et la GRC, ou nos tutoriels rapides sur des outils CRM spécifiques.', + banner_button_text: 'Inscrivez-vous maintenant', + banner_button_link: "#sso-widget" + %} + + {% include "homepage_generic_cards" %} + {% include "homepage_page_info" %} + {% include "opinions" %} + {% include 'homepage_faq' %} + {% endif %} + + + {% include "green_banner_image_alt", + banner_title: 'Comment tirer le meilleur parti de Pipedrive', + banner_text: ' + Pipedrive est un CRM débordant d’outils intelligents, pensés pour améliorer vos processus de vente et de marketing. Notre plateforme de GRC embarque tous les outils possibles, allant du marketing automation aux reporting analytiques.
+ Suivez vos leads et vos prospects depuis la vue en pipeline intuitive de Pipedrive. Recevez des notifications chaque fois que vos prospects signalent leur intérêt afin de les relancer au moment idéal.

+ Centralisez l’ensemble de vos données clients dans un espace unique, et intégrez-y vos outils de marketing digital. Ajoutez des champs personnalisés à vos contacts et groupez-les par secteur d’activité pour affiner votre ciblage.
+ Explore +
', + banner_button_text: 'Commencez dès aujourd'hui', + banner_button_link: "#sso-widget", + banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" + + %} +
+ + {% include "footer" %} + {% endif %} + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/fr-video-tutorials.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/fr-video-tutorials.html.liquid new file mode 100644 index 00000000..a3a269ea --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/fr-video-tutorials.html.liquid @@ -0,0 +1,41 @@ +{% comment %} skip-auth {% endcomment %} +{% if current_person.signed_in? == false and current_school.sso_active? == false %} + + {% else %} + {% include "header" %} + +
+ + {% include "green_banner_image", + banner_title: 'Tutoriels vidéo', + banner_text: 'Bienvenue dans la section des tutoriels vidéo de Pipedrive, où vous trouverez des vidéos et des ressources de formation CRM pour aider votre entreprise à se développer avec notre logiciel CRM.', + banner_button_text: 'S'inscrire à des cours', + banner_button_link: "#sso-widget", + banner_image_url: "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-webinars.webp" + %} + + {% include "video_tutorials_courses", lang: "fr" %} + {% include "video_tutorials_page_info" %} + {% include 'opinions' %} + {% include 'video_tutorials_faq' %} + + {% unless current_person.signed_in? %} + {% include "green_banner_text_bg_image", + banner_title: 'Débloquez des vidéos gratuitement', + banner_text: "", + banner_button_text: 'S'inscrire', + banner_button_link: "#sso-widget" + %} + {% endunless %} +
+ + {% include "footer" %} + {% endif %} + + {% if current_person.signed_in? == false and current_school.sso_active? %} + + {% endif %} + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/homepage-test-new-registered.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/homepage-test-new-registered.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/homepage-test-new-registered.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/homepage-test-new-registered.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/homepage-test-not-registered.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/homepage-test-not-registered.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/homepage-test-not-registered.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/homepage-test-not-registered.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/homepage-test-regular-registered.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/homepage-test-regular-registered.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/homepage-test-regular-registered.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/homepage-test-regular-registered.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/homepage.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/homepage.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/homepage.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/homepage.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/learning_path.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/learning_path.html.liquid new file mode 100644 index 00000000..5cbb5a93 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/learning_path.html.liquid @@ -0,0 +1,10 @@ +{% include "header" %} +
+
+ {% include "learning_path_desktop_view" %} +
+
+ {% include "learning_path_mobile_view" %} +
+
+{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/learning_path_summary.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/learning_path_summary.html.liquid new file mode 100644 index 00000000..99ae32ed --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/learning_path_summary.html.liquid @@ -0,0 +1,10 @@ +{% include "header" %} +
+
+ {% include "learning_path_summary_desktop_view" %} +
+
+ {% include "learning_path_summary_mobile_view" %} +
+
+{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/learning_paths.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/learning_paths.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/learning_paths.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/learning_paths.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/login-page.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/login-page.html.liquid new file mode 100644 index 00000000..751e39b9 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/login-page.html.liquid @@ -0,0 +1,101 @@ +{% comment %} skip-auth {% endcomment %} +{% include 'header' %} + +
+ +
+ +{% include 'footer' %} + + + diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/login.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/login.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/login.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/login.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/logout.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/logout.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/logout.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/logout.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/master.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/master.html.liquid new file mode 100644 index 00000000..63345068 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/master.html.liquid @@ -0,0 +1 @@ +{% body %} diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/not_found.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/not_found.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/not_found.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/not_found.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/private_certificate.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/private_certificate.html.liquid new file mode 100644 index 00000000..15d05419 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/private_certificate.html.liquid @@ -0,0 +1,10 @@ +{% include "header" %} +{% include "certificates_top_bar" %} +
+
+
+ {% include "certificates_preview" %} + {% include "certificates_info_column" %} +
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/profile-settings.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/profile-settings.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/profile-settings.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/profile-settings.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/public_certificate.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/public_certificate.html.liquid new file mode 100644 index 00000000..15d05419 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/public_certificate.html.liquid @@ -0,0 +1,10 @@ +{% include "header" %} +{% include "certificates_top_bar" %} +
+
+
+ {% include "certificates_preview" %} + {% include "certificates_info_column" %} +
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/reset_password.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/reset_password.html.liquid new file mode 100644 index 00000000..281c6eaa --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/reset_password.html.liquid @@ -0,0 +1,43 @@ +
+
+ {% include "header_minimal" %} +
+
+ + + {% form_authenticity_token %} +
+ + +
+
+ + +
+ +
+
+
+
diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/search.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/search.html.liquid new file mode 100644 index 00000000..01684399 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/search.html.liquid @@ -0,0 +1,27 @@ +{% include "header" %} +
+
+ {% t .title %} +
+
+
+ {% t .showing %} + {{ results.count }} + {% t .results_for %} + "{{ results.term }}" +
+ {% capture label %}{% t shared.filters.by_type %}{% endcapture %} + {% + include "filter_dropdown", + filters: results.filters, + key: "type", + label: label + %} +
+ {% if results.items.any? %} + {% render "search_result" for results.items as result %} + {% else %} + {% include "search_zero_state" %} + {% endif %} +
+{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/sign_up.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/sign_up.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/sign_up.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/sign_up.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/styles.css.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/styles.css.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/styles.css.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/styles.css.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/training_events.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/training_events.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/training_events.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/training_events.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/training_session.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/training_session.html.liquid new file mode 100644 index 00000000..5b78b834 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/training_session.html.liquid @@ -0,0 +1,10 @@ +{% include "header" %} +
+
+ {% include "training_session_desktop_view" %} +
+
+ {% include "training_session_mobile_view" %} +
+
+{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/training_session_attendance.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/training_session_attendance.html.liquid new file mode 100644 index 00000000..71bb6119 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/training_session_attendance.html.liquid @@ -0,0 +1,43 @@ +{% include "header" %} +
+
+ {% if token %} + +
+ {{ training_session.title }} +
+
+ {% t .info, + event_name: training_session.title, + session_date: training_session.date, + session_time: training_session.time + %} +
+
+ {% t .question %} +
+
+ {% form_authenticity_token %} + + + +
+
+ {% t .salutation %} +
+
+ {{ current_school.name }} +
+ {% else %} + +
+ {% t .success.response_text %} +
+ +
+{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/unsubscribe.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/unsubscribe.html.liquid new file mode 100644 index 00000000..69a54028 --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/unsubscribe.html.liquid @@ -0,0 +1,30 @@ +{% include "header" %} +
+
+ {% if token %} + +
+ {% t .unsubscribe_text %} +
+
+ {% t .resubscribe_text %} +
+
+ {% form_authenticity_token %} + + +
+ {% else %} + +
+ {% t .resubscribed_text %} +
+ {% endif %} +
+
+{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/video-tutorials.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/video-tutorials.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive Learn - CRM/video-tutorials.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/video-tutorials.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/webinars.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/webinars.html.liquid similarity index 100% rename from Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/webinars.html.liquid rename to Custom_Templates/customer_templates/Pipedrive - UserLearn/webinars.html.liquid diff --git a/Custom_Templates/customer_templates/Pipedrive - UserLearn/welcome.html.liquid b/Custom_Templates/customer_templates/Pipedrive - UserLearn/welcome.html.liquid new file mode 100644 index 00000000..c49d103e --- /dev/null +++ b/Custom_Templates/customer_templates/Pipedrive - UserLearn/welcome.html.liquid @@ -0,0 +1,151 @@ +{% 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/Pipedrive Learn - CRM/.DS_Store b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/.DS_Store deleted file mode 100644 index 5008ddfc..00000000 Binary files a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/.DS_Store and /dev/null differ 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 deleted file mode 100644 index ba35048c..00000000 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/br-catalog.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ -{% comment %} skip-auth {% endcomment %} -{% if current_person.signed_in? == false and current_school.sso_active? == false %} - - {% else %} - {% include "header" %} - -
- {% assign banner_title = 'Academy courses - Academy-Kurse - Cursos de la Academia - Cours de l'Académie - Cursos da Academia' - %} - {% assign banner_text = 'Welcome to Pipedrive’s Academy courses! Here, you’ll find virtual training programs and online video courses, to help you and your sales team develop your CRM and sales skills. These courses include in-depth video lessons that will empower you to improve each and every stage of your sales process. - Willkommen bei den Academy Kursen von Pipedrive! Hier finden Sie virtuelle Trainingsprogramme und Online-Video-Kurse, die Sie und Ihr Vertriebsteam dabei unterstützen, Ihre CRM- und Vertriebsfähigkeiten auszubauen. Dazu gehören detaillierte Video-Kurse, die Ihnen dabei helfen, jede einzelne Phase Ihres Vertriebsprozesses zu verbessern. - ¡Bienvenido a los cursos de la Academia Pipedrive! Aquí encontrarás programas de capacitación virtual y cursos de video en línea para ayudarte a ti y a tu equipo de ventas a desarrollar tus habilidades de ventas y CRM. Estos cursos incluyen lecciones detalladas en video que te capacitarán para mejorar todas y cada una de las etapas de tu proceso de ventas - Bienvenue dans les cours de l’Académie Pipedrive ! Cet espace de formation en ligne vous donne accès à des cours en vidéo qui vous aideront, vous et votre équipe commerciale, à développer vos compétences en vente et en CRM. Nos vidéos didactiques vous fourniront toutes les clés pour optimiser chacune des étapes de votre processus commercial. - Bem-vindo(a) aos cursos da Academia do Pipedrive! Aqui você vai encontrar programas de treinamento e cursos para ajudar você e sua equipe no desenvolvimento do conhecimento sobre CRM e vendas. Os cursos incluem vídeo aulas que ensinarão você a melhorar cada passo do seu processo de vendas.' - %} - {% assign banner_button_text = 'Unlock courses - Kurse freischalten - Desbloquear cursos - Débloquer les cours - Desbloquear cursos' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp" %} - {% include "green_banner_image" %} - - {% include "catalog_courses" %} - {% include "catalog_page_info" %} - {% include "opinions" %} - {% include 'catalog_faq' %} - - {% assign banner_title = 'How to get the most out of Pipedrive? - Wie machen Sie das Beste aus Pipedrive? - ¿Cómo aprovechar al máximo Pipedrive? - Comment tirer pleinement parti de Pipedrive ? - Como aproveitar o Pipedrive ao máximo?' - %} - {% assign banner_text = ' - Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
- Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

- Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
- Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
-
- - Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur Marketingautomatisierung bis zu detaillierten Vertriebsberichten.
- Behalten Sie Ihre Leads und potenziellen Kunden mit der intuitiven Pipeline-Ansicht von Pipedrive im Blick. Erhalten Sie Benachrichtigungen, wenn Ihre Interessenten bereit sind, einen Deal abzuschließen, damit Sie genau im richtigen Moment nachfassen können.

- Zentralisieren Sie alle Kundeninformationen an einem Ort und integrieren Sie sie mit Ihren Tools für digitales Marketing. Ergänzen Sie benutzerdefinierte Felder für Kontakte und teilen Sie sie nach Branchen auf, damit Sie auf jeden Fall die heißesten Leads ansprechen.
- Fangen Sie heute an, Pipedrive zu nutzen, um das Beste aus Ihrem leistungsstarken CRM-Tool zu machen und dafür zu sorgen, dass die Deals fließen.
-
- - El CRM de Pipedrive está repleto de herramientas inteligentes para mejorar tus procesos de ventas y marketing. Nuestra plataforma de CRM ofrece todo, desde funciones de automatización de marketing hasta informes de ventas detallados.
- Mantente perfectamente al día con tus prospectos y clientes potenciales con la vista del embudo intuitiva de Pipedrive. Recibe una notificación cuando tus clientes potenciales estén listos para cerrar un trato para que puedas darle seguimiento en el momento preciso.

- Centraliza toda la información de tus clientes bajo un mismo techo e intégrala con tus herramientas de marketing digital. Añade campos personalizados para los contactos y sepáralos por industrias para asegurarte de que te diriges a los prospectos más interesados.
- Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.
-
- - Pipedrive est un CRM débordant d’outils intelligents, pensés pour améliorer vos processus de vente et de marketing. Notre plateforme de GRC embarque tous les outils possibles, allant du marketing automation aux reporting analytiques.
- Suivez vos leads et vos prospects depuis la vue en pipeline intuitive de Pipedrive. Recevez des notifications chaque fois que vos prospects signalent leur intérêt afin de les relancer au moment idéal.

- Centralisez l’ensemble de vos données clients dans un espace unique, et intégrez-y vos outils de marketing digital. Ajoutez des champs personnalisés à vos contacts et groupez-les par secteur d’activité pour affiner votre ciblage.
- Explorez dès aujourd’hui nos formations Pipedrive Learn pour libérer tout le potentiel de votre logiciel CRM et faire fructifier votre relation client.
-
- - O CRM Pipedrive CRM está cheio de ferramentas inteligentes para melhorar seus processos de vendas e de marketing. Nossa plataforma CRM oferece tudo - dos recursos de automatização do marketing aos relatórios detalhados sobre vendas.
- Simplifique o acompanhamento de leads e clientes potenciais com a visualização intuitiva de pipeline do Pipedrive. Receba notificações quando seus prospectos estiverem prontos para fechar um negócio para fazer o follow up no momento certo.

- Centralize todas as informações sobre clientes e faça a integração com as suas ferramentas de marketing digital. Adicione campos personalizados para contatos e separe-os por indústria para garantir que você foque nos leads certos.
- Comece a usar o Aprenda com o Pipedrive hoje para aproveitar ao máximo a sua poderosa ferramenta CRM e manter os negócios fluindo.
-
' - %} - {% assign banner_button_text = 'Start today - Beginnen Sie heute - Empieza hoy mismo - Commencez dès aujourd'hui - Comece hoje mesmo' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} - {% include "green_banner_image_alt" %} -
- - {% include "footer" %} - {% endif %} - {% if current_person.signed_in? == false and current_school.sso_active? %} - - {% endif %} - \ No newline at end of file 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 deleted file mode 100644 index c9cae27f..00000000 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/br-homepage.html.liquid +++ /dev/null @@ -1,113 +0,0 @@ -{% comment %} skip-auth {% endcomment %} -{% if current_person.signed_in? == false and current_school.sso_active? == false %} - - {% else %} - {% include "header" %} - -
- {% if current_person.signed_in? %} - {% assign new_person = true %} - {% for course in courses.enrolled %} - {% if course.started? %} - {% assign new_person = false %} - {% break %} - {% endif %} - {% endfor %} - {% if new_person %} - {% include 'homepage_banner_new_person' %} - {% include 'homepage_recommended' %} - {% include "homepage_generic_cards" %} - {% include "homepage_page_info" %} - {% include "opinions" %} - {% include 'homepage_faq' %} - {% else %} - {% include 'homepage_banner' %} - {% include 'homepage_latest_courses' %} - - {% endif %} - {% else %} - {% assign banner_title = 'Pipedrive Learn - Pipedrive Learn - Pipedrive Aprende - Pipedrive Learn - Aprenda com o Pipedrive' - %} - {% assign banner_text = 'Welcome to Pipedrive Learn! Here, you’ll find CRM training videos to help you learn CRM management and sales skills. Explore everything from in-depth sales, marketing and CRM courses to quick tutorials on specific CRM tools. - Willkommen bei Pipedrive Learn! Hier finden Sie Übungsvideos, um Ihre Fähigkeiten in CRM-Management und Vertrieb auszubauen. Beginnend bei Kursen zum CRM über spezielle Vertriebsfragen bis hin zu Marketing und Kurz-Tutorials zu bestimmten CRM-Tools bietet Pipedrive Learn alles was Sie suchen. - ¡Bienvenido a Aprender con Pipedrive! Aquí encontrarás videos de capacitación de CRM para ayudarte a aprender habilidades de ventas y administración de CRM. Explora todo, desde cursos detallados de ventas, marketing y CRM hasta tutoriales rápidos sobre herramientas específicas de CRM. - Bienvenue dans Pipedrive Learn ! Cet espace de formation au CRM vous propose des vidéos didactiques pour optimiser votre relation client et développer vos compétences commerciales. Suivez nos cours approfondis sur la vente, le marketing et la GRC, ou nos tutoriels rapides sur des outils CRM spécifiques. - Bem-vindo(a) ao Aprenda com o Pipedrive! Aqui você encontra vídeos de treinamento para ajudar você a melhorar suas habilidades de vendas e de gestão de CRM. Explore cursos aprofundados sobre vendas, marketing e CRM e tutoriais curtos sobre ferramentas específicas.' - %} - {% assign banner_button_text = 'Register now - Jetzt anmelden - Regístrate ahora - Inscrivez-vous maintenant - Cadastre-se agora' - %} - {% assign banner_button_link = "#sso-widget" %} - {% include "green_banner_text" %} - - {% include "homepage_generic_cards" %} - {% include "homepage_page_info" %} - {% include "opinions" %} - {% include 'homepage_faq' %} - {% endif %} - - {% assign banner_title = 'How to get the most out of Pipedrive - Wie Sie das Beste aus Pipedrive herausholen - Cómo sacar el máximo partido a Pipedrive - Comment tirer le meilleur parti de Pipedrive - Como aproveitar o Pipedrive ao máximo' - %} - {% assign banner_text = ' - Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
- Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

- Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
- Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
-
- - Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur Marketingautomatisierung bis zu detaillierten Vertriebsberichten.
- Behalten Sie Ihre Leads und potenziellen Kunden mit der intuitiven Pipeline-Ansicht von Pipedrive im Blick. Erhalten Sie Benachrichtigungen, wenn Ihre Interessenten bereit sind, einen Deal abzuschließen, damit Sie genau im richtigen Moment nachfassen können.

- Zentralisieren Sie alle Kundeninformationen an einem Ort und integrieren Sie sie mit Ihren Tools für digitales Marketing. Ergänzen Sie benutzerdefinierte Felder für Kontakte und teilen Sie sie nach Branchen auf, damit Sie auf jeden Fall die heißesten Leads ansprechen.
- Fangen Sie heute an, Pipedrive zu nutzen, um das Beste aus Ihrem leistungsstarken CRM-Tool zu machen und dafür zu sorgen, dass die Deals fließen.
-
- - El CRM de Pipedrive está repleto de herramientas inteligentes para mejorar tus procesos de ventas y marketing. Nuestra plataforma de CRM ofrece todo, desde funciones de automatización de marketing hasta informes de ventas detallados.
- Mantente perfectamente al día con tus prospectos y clientes potenciales con la vista del embudo intuitiva de Pipedrive. Recibe una notificación cuando tus clientes potenciales estén listos para cerrar un trato para que puedas darle seguimiento en el momento preciso.

- Centraliza toda la información de tus clientes bajo un mismo techo e intégrala con tus herramientas de marketing digital. Añade campos personalizados para los contactos y sepáralos por industrias para asegurarte de que te diriges a los prospectos más interesados.
- Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.
-
- - Pipedrive est un CRM débordant d’outils intelligents, pensés pour améliorer vos processus de vente et de marketing. Notre plateforme de GRC embarque tous les outils possibles, allant du marketing automation aux reporting analytiques.
- Suivez vos leads et vos prospects depuis la vue en pipeline intuitive de Pipedrive. Recevez des notifications chaque fois que vos prospects signalent leur intérêt afin de les relancer au moment idéal.

- Centralisez l’ensemble de vos données clients dans un espace unique, et intégrez-y vos outils de marketing digital. Ajoutez des champs personnalisés à vos contacts et groupez-les par secteur d’activité pour affiner votre ciblage.
- Explorez dès aujourd’hui nos formations Pipedrive Learn pour libérer tout le potentiel de votre logiciel CRM et faire fructifier votre relation client.
-
- - O CRM Pipedrive CRM está cheio de ferramentas inteligentes para melhorar seus processos de vendas e de marketing. Nossa plataforma CRM oferece tudo - dos recursos de automatização do marketing aos relatórios detalhados sobre vendas.
- Simplifique o acompanhamento de leads e clientes potenciais com a visualização intuitiva de pipeline do Pipedrive. Receba notificações quando seus prospectos estiverem prontos para fechar um negócio para fazer o follow up no momento certo.

- Centralize todas as informações sobre clientes e faça a integração com as suas ferramentas de marketing digital. Adicione campos personalizados para contatos e separe-os por indústria para garantir que você foque nos leads certos.
- Comece a usar o Aprenda com o Pipedrive hoje para aproveitar ao máximo a sua poderosa ferramenta CRM e manter os negócios fluindo.
-
' - %} - {% assign banner_button_text = 'Start today - Beginnen Sie heute - Empieza hoy mismo - Commencez dès aujourd'hui - Comece hoje mesmo' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} - {% include "green_banner_image_alt" %} -
- - {% include "footer" %} - {% endif %} - - - \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/br-video-tutorials.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/br-video-tutorials.html.liquid deleted file mode 100644 index 71475a38..00000000 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/br-video-tutorials.html.liquid +++ /dev/null @@ -1,63 +0,0 @@ -{% comment %} skip-auth {% endcomment %} -{% if current_person.signed_in? == false and current_school.sso_active? == false %} - - {% else %} - {% include "header" %} - -
- {% assign banner_title = 'Video Tutorials - Video-Tutorials - Tutoriales en vídeo - Tutoriels vidéo - Tutoriais em vídeo' - %} - {% assign banner_text = 'Welcome to Pipedrive’s video tutorials section, where you’ll find video and CRM training resources to help your business grow with our CRM software. - Willkommen im Video-Tutorial-Bereich von Pipedrive. Hier finden Sie Videos und andere CRM-Schulungsressourcen, die Ihr Unternehmen beim Wachstum mit unserer CRM-Software unterstützen. - Bienvenido a la sección de tutoriales en vídeo de Pipedrive, donde encontrarás recursos de formación en vídeo y CRM para ayudar a tu empresa a crecer con nuestro software CRM. - Bienvenue dans la section des tutoriels vidéo de Pipedrive, où vous trouverez des vidéos et des ressources de formation CRM pour aider votre entreprise à se développer avec notre logiciel CRM. - Bem-vindo(a) à seção de tutoriais em vídeo da Pipedrive, onde você encontrará recursos de treinamento em vídeo e CRM para ajudar seu negócio a crescer com nosso software de CRM.' - %} - {% assign banner_button_text = 'Sign up for courses - Für Kurse anmelden - Inscríbete en los cursos - S'inscrire à des cours - Inscreva-se nos cursos' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-webinars.webp" %} - {% include "green_banner_image" %} - - {% include "video_tutorials_courses" %} - {% include "video_tutorials_page_info" %} - {% include 'opinions' %} - {% include 'video_tutorials_faq' %} - - {% unless current_person.signed_in? %} - {% assign banner_title = 'Unlock videos for free - Videos kostenlos freischalten - Desbloquear vídeos gratis - Débloquez des vidéos gratuitement - Desbloquear vídeos de graça' - %} - {% assign banner_text = "" %} - {% assign banner_button_text = 'Sign up - Anmelden - Regístrate - S'inscrire - Cadastre-se' - %} - {% assign banner_button_link = "#sso-widget" %} - {% include "green_banner_text_bg_image" %} - {% endunless %} -
- - {% include "footer" %} - {% endif %} - - {% if current_person.signed_in? == false and current_school.sso_active? %} - - {% endif %} - \ No newline at end of file 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 deleted file mode 100644 index 77944fa9..00000000 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/de-catalog.html.liquid +++ /dev/null @@ -1,92 +0,0 @@ -{% comment %} skip-auth {% endcomment %} - -{% if current_person.signed_in? == false and current_school.sso_active? == false %} - - {% else %} - {% include "header" %} - -
- {% assign banner_title = 'Academy courses - Academy-Kurse - Cursos de la Academia - Cours de l'Académie - Cursos da Academia' - %} - {% assign banner_text = 'Welcome to Pipedrive’s Academy courses! Here, you’ll find virtual training programs and online video courses, to help you and your sales team develop your CRM and sales skills. These courses include in-depth video lessons that will empower you to improve each and every stage of your sales process. - Willkommen bei den Academy Kursen von Pipedrive! Hier finden Sie virtuelle Trainingsprogramme und Online-Video-Kurse, die Sie und Ihr Vertriebsteam dabei unterstützen, Ihre CRM- und Vertriebsfähigkeiten auszubauen. Dazu gehören detaillierte Video-Kurse, die Ihnen dabei helfen, jede einzelne Phase Ihres Vertriebsprozesses zu verbessern. - ¡Bienvenido a los cursos de la Academia Pipedrive! Aquí encontrarás programas de capacitación virtual y cursos de video en línea para ayudarte a ti y a tu equipo de ventas a desarrollar tus habilidades de ventas y CRM. Estos cursos incluyen lecciones detalladas en video que te capacitarán para mejorar todas y cada una de las etapas de tu proceso de ventas - Bienvenue dans les cours de l’Académie Pipedrive ! Cet espace de formation en ligne vous donne accès à des cours en vidéo qui vous aideront, vous et votre équipe commerciale, à développer vos compétences en vente et en CRM. Nos vidéos didactiques vous fourniront toutes les clés pour optimiser chacune des étapes de votre processus commercial. - Bem-vindo(a) aos cursos da Academia do Pipedrive! Aqui você vai encontrar programas de treinamento e cursos para ajudar você e sua equipe no desenvolvimento do conhecimento sobre CRM e vendas. Os cursos incluem vídeo aulas que ensinarão você a melhorar cada passo do seu processo de vendas.' - %} - {% assign banner_button_text = 'Unlock courses - Kurse freischalten - Desbloquear cursos - Débloquer les cours - Desbloquear cursos' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp" %} - {% include "green_banner_image" %} - - {% include "catalog_courses" %} - {% include "catalog_page_info" %} - {% include "opinions" %} - {% include 'catalog_faq' %} - - {% assign banner_title = 'How to get the most out of Pipedrive? - Wie machen Sie das Beste aus Pipedrive? - ¿Cómo aprovechar al máximo Pipedrive? - Comment tirer pleinement parti de Pipedrive ? - Como aproveitar o Pipedrive ao máximo?' - %} - {% assign banner_text = ' - Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
- Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

- Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
- Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
-
- - Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur Marketingautomatisierung bis zu detaillierten Vertriebsberichten.
- Behalten Sie Ihre Leads und potenziellen Kunden mit der intuitiven Pipeline-Ansicht von Pipedrive im Blick. Erhalten Sie Benachrichtigungen, wenn Ihre Interessenten bereit sind, einen Deal abzuschließen, damit Sie genau im richtigen Moment nachfassen können.

- Zentralisieren Sie alle Kundeninformationen an einem Ort und integrieren Sie sie mit Ihren Tools für digitales Marketing. Ergänzen Sie benutzerdefinierte Felder für Kontakte und teilen Sie sie nach Branchen auf, damit Sie auf jeden Fall die heißesten Leads ansprechen.
- Fangen Sie heute an, Pipedrive zu nutzen, um das Beste aus Ihrem leistungsstarken CRM-Tool zu machen und dafür zu sorgen, dass die Deals fließen.
-
- - El CRM de Pipedrive está repleto de herramientas inteligentes para mejorar tus procesos de ventas y marketing. Nuestra plataforma de CRM ofrece todo, desde funciones de automatización de marketing hasta informes de ventas detallados.
- Mantente perfectamente al día con tus prospectos y clientes potenciales con la vista del embudo intuitiva de Pipedrive. Recibe una notificación cuando tus clientes potenciales estén listos para cerrar un trato para que puedas darle seguimiento en el momento preciso.

- Centraliza toda la información de tus clientes bajo un mismo techo e intégrala con tus herramientas de marketing digital. Añade campos personalizados para los contactos y sepáralos por industrias para asegurarte de que te diriges a los prospectos más interesados.
- Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.
-
- - Pipedrive est un CRM débordant d’outils intelligents, pensés pour améliorer vos processus de vente et de marketing. Notre plateforme de GRC embarque tous les outils possibles, allant du marketing automation aux reporting analytiques.
- Suivez vos leads et vos prospects depuis la vue en pipeline intuitive de Pipedrive. Recevez des notifications chaque fois que vos prospects signalent leur intérêt afin de les relancer au moment idéal.

- Centralisez l’ensemble de vos données clients dans un espace unique, et intégrez-y vos outils de marketing digital. Ajoutez des champs personnalisés à vos contacts et groupez-les par secteur d’activité pour affiner votre ciblage.
- Explorez dès aujourd’hui nos formations Pipedrive Learn pour libérer tout le potentiel de votre logiciel CRM et faire fructifier votre relation client.
-
- - O CRM Pipedrive CRM está cheio de ferramentas inteligentes para melhorar seus processos de vendas e de marketing. Nossa plataforma CRM oferece tudo - dos recursos de automatização do marketing aos relatórios detalhados sobre vendas.
- Simplifique o acompanhamento de leads e clientes potenciais com a visualização intuitiva de pipeline do Pipedrive. Receba notificações quando seus prospectos estiverem prontos para fechar um negócio para fazer o follow up no momento certo.

- Centralize todas as informações sobre clientes e faça a integração com as suas ferramentas de marketing digital. Adicione campos personalizados para contatos e separe-os por indústria para garantir que você foque nos leads certos.
- Comece a usar o Aprenda com o Pipedrive hoje para aproveitar ao máximo a sua poderosa ferramenta CRM e manter os negócios fluindo.
-
' - %} - {% assign banner_button_text = 'Start today - Beginnen Sie heute - Empieza hoy mismo - Commencez dès aujourd'hui - Comece hoje mesmo' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} - {% include "green_banner_image_alt" %} -
- - {% include "footer" %} - {% endif %} - {% if current_person.signed_in? == false and current_school.sso_active? %} - - {% endif %} - \ No newline at end of file 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 deleted file mode 100644 index c9cae27f..00000000 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/de-homepage.html.liquid +++ /dev/null @@ -1,113 +0,0 @@ -{% comment %} skip-auth {% endcomment %} -{% if current_person.signed_in? == false and current_school.sso_active? == false %} - - {% else %} - {% include "header" %} - -
- {% if current_person.signed_in? %} - {% assign new_person = true %} - {% for course in courses.enrolled %} - {% if course.started? %} - {% assign new_person = false %} - {% break %} - {% endif %} - {% endfor %} - {% if new_person %} - {% include 'homepage_banner_new_person' %} - {% include 'homepage_recommended' %} - {% include "homepage_generic_cards" %} - {% include "homepage_page_info" %} - {% include "opinions" %} - {% include 'homepage_faq' %} - {% else %} - {% include 'homepage_banner' %} - {% include 'homepage_latest_courses' %} - - {% endif %} - {% else %} - {% assign banner_title = 'Pipedrive Learn - Pipedrive Learn - Pipedrive Aprende - Pipedrive Learn - Aprenda com o Pipedrive' - %} - {% assign banner_text = 'Welcome to Pipedrive Learn! Here, you’ll find CRM training videos to help you learn CRM management and sales skills. Explore everything from in-depth sales, marketing and CRM courses to quick tutorials on specific CRM tools. - Willkommen bei Pipedrive Learn! Hier finden Sie Übungsvideos, um Ihre Fähigkeiten in CRM-Management und Vertrieb auszubauen. Beginnend bei Kursen zum CRM über spezielle Vertriebsfragen bis hin zu Marketing und Kurz-Tutorials zu bestimmten CRM-Tools bietet Pipedrive Learn alles was Sie suchen. - ¡Bienvenido a Aprender con Pipedrive! Aquí encontrarás videos de capacitación de CRM para ayudarte a aprender habilidades de ventas y administración de CRM. Explora todo, desde cursos detallados de ventas, marketing y CRM hasta tutoriales rápidos sobre herramientas específicas de CRM. - Bienvenue dans Pipedrive Learn ! Cet espace de formation au CRM vous propose des vidéos didactiques pour optimiser votre relation client et développer vos compétences commerciales. Suivez nos cours approfondis sur la vente, le marketing et la GRC, ou nos tutoriels rapides sur des outils CRM spécifiques. - Bem-vindo(a) ao Aprenda com o Pipedrive! Aqui você encontra vídeos de treinamento para ajudar você a melhorar suas habilidades de vendas e de gestão de CRM. Explore cursos aprofundados sobre vendas, marketing e CRM e tutoriais curtos sobre ferramentas específicas.' - %} - {% assign banner_button_text = 'Register now - Jetzt anmelden - Regístrate ahora - Inscrivez-vous maintenant - Cadastre-se agora' - %} - {% assign banner_button_link = "#sso-widget" %} - {% include "green_banner_text" %} - - {% include "homepage_generic_cards" %} - {% include "homepage_page_info" %} - {% include "opinions" %} - {% include 'homepage_faq' %} - {% endif %} - - {% assign banner_title = 'How to get the most out of Pipedrive - Wie Sie das Beste aus Pipedrive herausholen - Cómo sacar el máximo partido a Pipedrive - Comment tirer le meilleur parti de Pipedrive - Como aproveitar o Pipedrive ao máximo' - %} - {% assign banner_text = ' - Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
- Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

- Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
- Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
-
- - Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur Marketingautomatisierung bis zu detaillierten Vertriebsberichten.
- Behalten Sie Ihre Leads und potenziellen Kunden mit der intuitiven Pipeline-Ansicht von Pipedrive im Blick. Erhalten Sie Benachrichtigungen, wenn Ihre Interessenten bereit sind, einen Deal abzuschließen, damit Sie genau im richtigen Moment nachfassen können.

- Zentralisieren Sie alle Kundeninformationen an einem Ort und integrieren Sie sie mit Ihren Tools für digitales Marketing. Ergänzen Sie benutzerdefinierte Felder für Kontakte und teilen Sie sie nach Branchen auf, damit Sie auf jeden Fall die heißesten Leads ansprechen.
- Fangen Sie heute an, Pipedrive zu nutzen, um das Beste aus Ihrem leistungsstarken CRM-Tool zu machen und dafür zu sorgen, dass die Deals fließen.
-
- - El CRM de Pipedrive está repleto de herramientas inteligentes para mejorar tus procesos de ventas y marketing. Nuestra plataforma de CRM ofrece todo, desde funciones de automatización de marketing hasta informes de ventas detallados.
- Mantente perfectamente al día con tus prospectos y clientes potenciales con la vista del embudo intuitiva de Pipedrive. Recibe una notificación cuando tus clientes potenciales estén listos para cerrar un trato para que puedas darle seguimiento en el momento preciso.

- Centraliza toda la información de tus clientes bajo un mismo techo e intégrala con tus herramientas de marketing digital. Añade campos personalizados para los contactos y sepáralos por industrias para asegurarte de que te diriges a los prospectos más interesados.
- Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.
-
- - Pipedrive est un CRM débordant d’outils intelligents, pensés pour améliorer vos processus de vente et de marketing. Notre plateforme de GRC embarque tous les outils possibles, allant du marketing automation aux reporting analytiques.
- Suivez vos leads et vos prospects depuis la vue en pipeline intuitive de Pipedrive. Recevez des notifications chaque fois que vos prospects signalent leur intérêt afin de les relancer au moment idéal.

- Centralisez l’ensemble de vos données clients dans un espace unique, et intégrez-y vos outils de marketing digital. Ajoutez des champs personnalisés à vos contacts et groupez-les par secteur d’activité pour affiner votre ciblage.
- Explorez dès aujourd’hui nos formations Pipedrive Learn pour libérer tout le potentiel de votre logiciel CRM et faire fructifier votre relation client.
-
- - O CRM Pipedrive CRM está cheio de ferramentas inteligentes para melhorar seus processos de vendas e de marketing. Nossa plataforma CRM oferece tudo - dos recursos de automatização do marketing aos relatórios detalhados sobre vendas.
- Simplifique o acompanhamento de leads e clientes potenciais com a visualização intuitiva de pipeline do Pipedrive. Receba notificações quando seus prospectos estiverem prontos para fechar um negócio para fazer o follow up no momento certo.

- Centralize todas as informações sobre clientes e faça a integração com as suas ferramentas de marketing digital. Adicione campos personalizados para contatos e separe-os por indústria para garantir que você foque nos leads certos.
- Comece a usar o Aprenda com o Pipedrive hoje para aproveitar ao máximo a sua poderosa ferramenta CRM e manter os negócios fluindo.
-
' - %} - {% assign banner_button_text = 'Start today - Beginnen Sie heute - Empieza hoy mismo - Commencez dès aujourd'hui - Comece hoje mesmo' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} - {% include "green_banner_image_alt" %} -
- - {% include "footer" %} - {% endif %} - - - \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/de-video-tutorials.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/de-video-tutorials.html.liquid deleted file mode 100644 index 71475a38..00000000 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/de-video-tutorials.html.liquid +++ /dev/null @@ -1,63 +0,0 @@ -{% comment %} skip-auth {% endcomment %} -{% if current_person.signed_in? == false and current_school.sso_active? == false %} - - {% else %} - {% include "header" %} - -
- {% assign banner_title = 'Video Tutorials - Video-Tutorials - Tutoriales en vídeo - Tutoriels vidéo - Tutoriais em vídeo' - %} - {% assign banner_text = 'Welcome to Pipedrive’s video tutorials section, where you’ll find video and CRM training resources to help your business grow with our CRM software. - Willkommen im Video-Tutorial-Bereich von Pipedrive. Hier finden Sie Videos und andere CRM-Schulungsressourcen, die Ihr Unternehmen beim Wachstum mit unserer CRM-Software unterstützen. - Bienvenido a la sección de tutoriales en vídeo de Pipedrive, donde encontrarás recursos de formación en vídeo y CRM para ayudar a tu empresa a crecer con nuestro software CRM. - Bienvenue dans la section des tutoriels vidéo de Pipedrive, où vous trouverez des vidéos et des ressources de formation CRM pour aider votre entreprise à se développer avec notre logiciel CRM. - Bem-vindo(a) à seção de tutoriais em vídeo da Pipedrive, onde você encontrará recursos de treinamento em vídeo e CRM para ajudar seu negócio a crescer com nosso software de CRM.' - %} - {% assign banner_button_text = 'Sign up for courses - Für Kurse anmelden - Inscríbete en los cursos - S'inscrire à des cours - Inscreva-se nos cursos' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-webinars.webp" %} - {% include "green_banner_image" %} - - {% include "video_tutorials_courses" %} - {% include "video_tutorials_page_info" %} - {% include 'opinions' %} - {% include 'video_tutorials_faq' %} - - {% unless current_person.signed_in? %} - {% assign banner_title = 'Unlock videos for free - Videos kostenlos freischalten - Desbloquear vídeos gratis - Débloquez des vidéos gratuitement - Desbloquear vídeos de graça' - %} - {% assign banner_text = "" %} - {% assign banner_button_text = 'Sign up - Anmelden - Regístrate - S'inscrire - Cadastre-se' - %} - {% assign banner_button_link = "#sso-widget" %} - {% include "green_banner_text_bg_image" %} - {% endunless %} -
- - {% include "footer" %} - {% endif %} - - {% if current_person.signed_in? == false and current_school.sso_active? %} - - {% endif %} - \ No newline at end of file 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 deleted file mode 100644 index ba35048c..00000000 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/es-catalog.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ -{% comment %} skip-auth {% endcomment %} -{% if current_person.signed_in? == false and current_school.sso_active? == false %} - - {% else %} - {% include "header" %} - -
- {% assign banner_title = 'Academy courses - Academy-Kurse - Cursos de la Academia - Cours de l'Académie - Cursos da Academia' - %} - {% assign banner_text = 'Welcome to Pipedrive’s Academy courses! Here, you’ll find virtual training programs and online video courses, to help you and your sales team develop your CRM and sales skills. These courses include in-depth video lessons that will empower you to improve each and every stage of your sales process. - Willkommen bei den Academy Kursen von Pipedrive! Hier finden Sie virtuelle Trainingsprogramme und Online-Video-Kurse, die Sie und Ihr Vertriebsteam dabei unterstützen, Ihre CRM- und Vertriebsfähigkeiten auszubauen. Dazu gehören detaillierte Video-Kurse, die Ihnen dabei helfen, jede einzelne Phase Ihres Vertriebsprozesses zu verbessern. - ¡Bienvenido a los cursos de la Academia Pipedrive! Aquí encontrarás programas de capacitación virtual y cursos de video en línea para ayudarte a ti y a tu equipo de ventas a desarrollar tus habilidades de ventas y CRM. Estos cursos incluyen lecciones detalladas en video que te capacitarán para mejorar todas y cada una de las etapas de tu proceso de ventas - Bienvenue dans les cours de l’Académie Pipedrive ! Cet espace de formation en ligne vous donne accès à des cours en vidéo qui vous aideront, vous et votre équipe commerciale, à développer vos compétences en vente et en CRM. Nos vidéos didactiques vous fourniront toutes les clés pour optimiser chacune des étapes de votre processus commercial. - Bem-vindo(a) aos cursos da Academia do Pipedrive! Aqui você vai encontrar programas de treinamento e cursos para ajudar você e sua equipe no desenvolvimento do conhecimento sobre CRM e vendas. Os cursos incluem vídeo aulas que ensinarão você a melhorar cada passo do seu processo de vendas.' - %} - {% assign banner_button_text = 'Unlock courses - Kurse freischalten - Desbloquear cursos - Débloquer les cours - Desbloquear cursos' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp" %} - {% include "green_banner_image" %} - - {% include "catalog_courses" %} - {% include "catalog_page_info" %} - {% include "opinions" %} - {% include 'catalog_faq' %} - - {% assign banner_title = 'How to get the most out of Pipedrive? - Wie machen Sie das Beste aus Pipedrive? - ¿Cómo aprovechar al máximo Pipedrive? - Comment tirer pleinement parti de Pipedrive ? - Como aproveitar o Pipedrive ao máximo?' - %} - {% assign banner_text = ' - Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
- Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

- Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
- Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
-
- - Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur Marketingautomatisierung bis zu detaillierten Vertriebsberichten.
- Behalten Sie Ihre Leads und potenziellen Kunden mit der intuitiven Pipeline-Ansicht von Pipedrive im Blick. Erhalten Sie Benachrichtigungen, wenn Ihre Interessenten bereit sind, einen Deal abzuschließen, damit Sie genau im richtigen Moment nachfassen können.

- Zentralisieren Sie alle Kundeninformationen an einem Ort und integrieren Sie sie mit Ihren Tools für digitales Marketing. Ergänzen Sie benutzerdefinierte Felder für Kontakte und teilen Sie sie nach Branchen auf, damit Sie auf jeden Fall die heißesten Leads ansprechen.
- Fangen Sie heute an, Pipedrive zu nutzen, um das Beste aus Ihrem leistungsstarken CRM-Tool zu machen und dafür zu sorgen, dass die Deals fließen.
-
- - El CRM de Pipedrive está repleto de herramientas inteligentes para mejorar tus procesos de ventas y marketing. Nuestra plataforma de CRM ofrece todo, desde funciones de automatización de marketing hasta informes de ventas detallados.
- Mantente perfectamente al día con tus prospectos y clientes potenciales con la vista del embudo intuitiva de Pipedrive. Recibe una notificación cuando tus clientes potenciales estén listos para cerrar un trato para que puedas darle seguimiento en el momento preciso.

- Centraliza toda la información de tus clientes bajo un mismo techo e intégrala con tus herramientas de marketing digital. Añade campos personalizados para los contactos y sepáralos por industrias para asegurarte de que te diriges a los prospectos más interesados.
- Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.
-
- - Pipedrive est un CRM débordant d’outils intelligents, pensés pour améliorer vos processus de vente et de marketing. Notre plateforme de GRC embarque tous les outils possibles, allant du marketing automation aux reporting analytiques.
- Suivez vos leads et vos prospects depuis la vue en pipeline intuitive de Pipedrive. Recevez des notifications chaque fois que vos prospects signalent leur intérêt afin de les relancer au moment idéal.

- Centralisez l’ensemble de vos données clients dans un espace unique, et intégrez-y vos outils de marketing digital. Ajoutez des champs personnalisés à vos contacts et groupez-les par secteur d’activité pour affiner votre ciblage.
- Explorez dès aujourd’hui nos formations Pipedrive Learn pour libérer tout le potentiel de votre logiciel CRM et faire fructifier votre relation client.
-
- - O CRM Pipedrive CRM está cheio de ferramentas inteligentes para melhorar seus processos de vendas e de marketing. Nossa plataforma CRM oferece tudo - dos recursos de automatização do marketing aos relatórios detalhados sobre vendas.
- Simplifique o acompanhamento de leads e clientes potenciais com a visualização intuitiva de pipeline do Pipedrive. Receba notificações quando seus prospectos estiverem prontos para fechar um negócio para fazer o follow up no momento certo.

- Centralize todas as informações sobre clientes e faça a integração com as suas ferramentas de marketing digital. Adicione campos personalizados para contatos e separe-os por indústria para garantir que você foque nos leads certos.
- Comece a usar o Aprenda com o Pipedrive hoje para aproveitar ao máximo a sua poderosa ferramenta CRM e manter os negócios fluindo.
-
' - %} - {% assign banner_button_text = 'Start today - Beginnen Sie heute - Empieza hoy mismo - Commencez dès aujourd'hui - Comece hoje mesmo' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} - {% include "green_banner_image_alt" %} -
- - {% include "footer" %} - {% endif %} - {% if current_person.signed_in? == false and current_school.sso_active? %} - - {% endif %} - \ No newline at end of file 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 deleted file mode 100644 index c9cae27f..00000000 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/es-homepage.html.liquid +++ /dev/null @@ -1,113 +0,0 @@ -{% comment %} skip-auth {% endcomment %} -{% if current_person.signed_in? == false and current_school.sso_active? == false %} - - {% else %} - {% include "header" %} - -
- {% if current_person.signed_in? %} - {% assign new_person = true %} - {% for course in courses.enrolled %} - {% if course.started? %} - {% assign new_person = false %} - {% break %} - {% endif %} - {% endfor %} - {% if new_person %} - {% include 'homepage_banner_new_person' %} - {% include 'homepage_recommended' %} - {% include "homepage_generic_cards" %} - {% include "homepage_page_info" %} - {% include "opinions" %} - {% include 'homepage_faq' %} - {% else %} - {% include 'homepage_banner' %} - {% include 'homepage_latest_courses' %} - - {% endif %} - {% else %} - {% assign banner_title = 'Pipedrive Learn - Pipedrive Learn - Pipedrive Aprende - Pipedrive Learn - Aprenda com o Pipedrive' - %} - {% assign banner_text = 'Welcome to Pipedrive Learn! Here, you’ll find CRM training videos to help you learn CRM management and sales skills. Explore everything from in-depth sales, marketing and CRM courses to quick tutorials on specific CRM tools. - Willkommen bei Pipedrive Learn! Hier finden Sie Übungsvideos, um Ihre Fähigkeiten in CRM-Management und Vertrieb auszubauen. Beginnend bei Kursen zum CRM über spezielle Vertriebsfragen bis hin zu Marketing und Kurz-Tutorials zu bestimmten CRM-Tools bietet Pipedrive Learn alles was Sie suchen. - ¡Bienvenido a Aprender con Pipedrive! Aquí encontrarás videos de capacitación de CRM para ayudarte a aprender habilidades de ventas y administración de CRM. Explora todo, desde cursos detallados de ventas, marketing y CRM hasta tutoriales rápidos sobre herramientas específicas de CRM. - Bienvenue dans Pipedrive Learn ! Cet espace de formation au CRM vous propose des vidéos didactiques pour optimiser votre relation client et développer vos compétences commerciales. Suivez nos cours approfondis sur la vente, le marketing et la GRC, ou nos tutoriels rapides sur des outils CRM spécifiques. - Bem-vindo(a) ao Aprenda com o Pipedrive! Aqui você encontra vídeos de treinamento para ajudar você a melhorar suas habilidades de vendas e de gestão de CRM. Explore cursos aprofundados sobre vendas, marketing e CRM e tutoriais curtos sobre ferramentas específicas.' - %} - {% assign banner_button_text = 'Register now - Jetzt anmelden - Regístrate ahora - Inscrivez-vous maintenant - Cadastre-se agora' - %} - {% assign banner_button_link = "#sso-widget" %} - {% include "green_banner_text" %} - - {% include "homepage_generic_cards" %} - {% include "homepage_page_info" %} - {% include "opinions" %} - {% include 'homepage_faq' %} - {% endif %} - - {% assign banner_title = 'How to get the most out of Pipedrive - Wie Sie das Beste aus Pipedrive herausholen - Cómo sacar el máximo partido a Pipedrive - Comment tirer le meilleur parti de Pipedrive - Como aproveitar o Pipedrive ao máximo' - %} - {% assign banner_text = ' - Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
- Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

- Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
- Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
-
- - Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur Marketingautomatisierung bis zu detaillierten Vertriebsberichten.
- Behalten Sie Ihre Leads und potenziellen Kunden mit der intuitiven Pipeline-Ansicht von Pipedrive im Blick. Erhalten Sie Benachrichtigungen, wenn Ihre Interessenten bereit sind, einen Deal abzuschließen, damit Sie genau im richtigen Moment nachfassen können.

- Zentralisieren Sie alle Kundeninformationen an einem Ort und integrieren Sie sie mit Ihren Tools für digitales Marketing. Ergänzen Sie benutzerdefinierte Felder für Kontakte und teilen Sie sie nach Branchen auf, damit Sie auf jeden Fall die heißesten Leads ansprechen.
- Fangen Sie heute an, Pipedrive zu nutzen, um das Beste aus Ihrem leistungsstarken CRM-Tool zu machen und dafür zu sorgen, dass die Deals fließen.
-
- - El CRM de Pipedrive está repleto de herramientas inteligentes para mejorar tus procesos de ventas y marketing. Nuestra plataforma de CRM ofrece todo, desde funciones de automatización de marketing hasta informes de ventas detallados.
- Mantente perfectamente al día con tus prospectos y clientes potenciales con la vista del embudo intuitiva de Pipedrive. Recibe una notificación cuando tus clientes potenciales estén listos para cerrar un trato para que puedas darle seguimiento en el momento preciso.

- Centraliza toda la información de tus clientes bajo un mismo techo e intégrala con tus herramientas de marketing digital. Añade campos personalizados para los contactos y sepáralos por industrias para asegurarte de que te diriges a los prospectos más interesados.
- Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.
-
- - Pipedrive est un CRM débordant d’outils intelligents, pensés pour améliorer vos processus de vente et de marketing. Notre plateforme de GRC embarque tous les outils possibles, allant du marketing automation aux reporting analytiques.
- Suivez vos leads et vos prospects depuis la vue en pipeline intuitive de Pipedrive. Recevez des notifications chaque fois que vos prospects signalent leur intérêt afin de les relancer au moment idéal.

- Centralisez l’ensemble de vos données clients dans un espace unique, et intégrez-y vos outils de marketing digital. Ajoutez des champs personnalisés à vos contacts et groupez-les par secteur d’activité pour affiner votre ciblage.
- Explorez dès aujourd’hui nos formations Pipedrive Learn pour libérer tout le potentiel de votre logiciel CRM et faire fructifier votre relation client.
-
- - O CRM Pipedrive CRM está cheio de ferramentas inteligentes para melhorar seus processos de vendas e de marketing. Nossa plataforma CRM oferece tudo - dos recursos de automatização do marketing aos relatórios detalhados sobre vendas.
- Simplifique o acompanhamento de leads e clientes potenciais com a visualização intuitiva de pipeline do Pipedrive. Receba notificações quando seus prospectos estiverem prontos para fechar um negócio para fazer o follow up no momento certo.

- Centralize todas as informações sobre clientes e faça a integração com as suas ferramentas de marketing digital. Adicione campos personalizados para contatos e separe-os por indústria para garantir que você foque nos leads certos.
- Comece a usar o Aprenda com o Pipedrive hoje para aproveitar ao máximo a sua poderosa ferramenta CRM e manter os negócios fluindo.
-
' - %} - {% assign banner_button_text = 'Start today - Beginnen Sie heute - Empieza hoy mismo - Commencez dès aujourd'hui - Comece hoje mesmo' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} - {% include "green_banner_image_alt" %} -
- - {% include "footer" %} - {% endif %} - - - \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/es-video-tutorials.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/es-video-tutorials.html.liquid deleted file mode 100644 index 71475a38..00000000 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/es-video-tutorials.html.liquid +++ /dev/null @@ -1,63 +0,0 @@ -{% comment %} skip-auth {% endcomment %} -{% if current_person.signed_in? == false and current_school.sso_active? == false %} - - {% else %} - {% include "header" %} - -
- {% assign banner_title = 'Video Tutorials - Video-Tutorials - Tutoriales en vídeo - Tutoriels vidéo - Tutoriais em vídeo' - %} - {% assign banner_text = 'Welcome to Pipedrive’s video tutorials section, where you’ll find video and CRM training resources to help your business grow with our CRM software. - Willkommen im Video-Tutorial-Bereich von Pipedrive. Hier finden Sie Videos und andere CRM-Schulungsressourcen, die Ihr Unternehmen beim Wachstum mit unserer CRM-Software unterstützen. - Bienvenido a la sección de tutoriales en vídeo de Pipedrive, donde encontrarás recursos de formación en vídeo y CRM para ayudar a tu empresa a crecer con nuestro software CRM. - Bienvenue dans la section des tutoriels vidéo de Pipedrive, où vous trouverez des vidéos et des ressources de formation CRM pour aider votre entreprise à se développer avec notre logiciel CRM. - Bem-vindo(a) à seção de tutoriais em vídeo da Pipedrive, onde você encontrará recursos de treinamento em vídeo e CRM para ajudar seu negócio a crescer com nosso software de CRM.' - %} - {% assign banner_button_text = 'Sign up for courses - Für Kurse anmelden - Inscríbete en los cursos - S'inscrire à des cours - Inscreva-se nos cursos' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-webinars.webp" %} - {% include "green_banner_image" %} - - {% include "video_tutorials_courses" %} - {% include "video_tutorials_page_info" %} - {% include 'opinions' %} - {% include 'video_tutorials_faq' %} - - {% unless current_person.signed_in? %} - {% assign banner_title = 'Unlock videos for free - Videos kostenlos freischalten - Desbloquear vídeos gratis - Débloquez des vidéos gratuitement - Desbloquear vídeos de graça' - %} - {% assign banner_text = "" %} - {% assign banner_button_text = 'Sign up - Anmelden - Regístrate - S'inscrire - Cadastre-se' - %} - {% assign banner_button_link = "#sso-widget" %} - {% include "green_banner_text_bg_image" %} - {% endunless %} -
- - {% include "footer" %} - {% endif %} - - {% if current_person.signed_in? == false and current_school.sso_active? %} - - {% endif %} - \ No newline at end of file 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 deleted file mode 100644 index ba35048c..00000000 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/fr-catalog.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ -{% comment %} skip-auth {% endcomment %} -{% if current_person.signed_in? == false and current_school.sso_active? == false %} - - {% else %} - {% include "header" %} - -
- {% assign banner_title = 'Academy courses - Academy-Kurse - Cursos de la Academia - Cours de l'Académie - Cursos da Academia' - %} - {% assign banner_text = 'Welcome to Pipedrive’s Academy courses! Here, you’ll find virtual training programs and online video courses, to help you and your sales team develop your CRM and sales skills. These courses include in-depth video lessons that will empower you to improve each and every stage of your sales process. - Willkommen bei den Academy Kursen von Pipedrive! Hier finden Sie virtuelle Trainingsprogramme und Online-Video-Kurse, die Sie und Ihr Vertriebsteam dabei unterstützen, Ihre CRM- und Vertriebsfähigkeiten auszubauen. Dazu gehören detaillierte Video-Kurse, die Ihnen dabei helfen, jede einzelne Phase Ihres Vertriebsprozesses zu verbessern. - ¡Bienvenido a los cursos de la Academia Pipedrive! Aquí encontrarás programas de capacitación virtual y cursos de video en línea para ayudarte a ti y a tu equipo de ventas a desarrollar tus habilidades de ventas y CRM. Estos cursos incluyen lecciones detalladas en video que te capacitarán para mejorar todas y cada una de las etapas de tu proceso de ventas - Bienvenue dans les cours de l’Académie Pipedrive ! Cet espace de formation en ligne vous donne accès à des cours en vidéo qui vous aideront, vous et votre équipe commerciale, à développer vos compétences en vente et en CRM. Nos vidéos didactiques vous fourniront toutes les clés pour optimiser chacune des étapes de votre processus commercial. - Bem-vindo(a) aos cursos da Academia do Pipedrive! Aqui você vai encontrar programas de treinamento e cursos para ajudar você e sua equipe no desenvolvimento do conhecimento sobre CRM e vendas. Os cursos incluem vídeo aulas que ensinarão você a melhorar cada passo do seu processo de vendas.' - %} - {% assign banner_button_text = 'Unlock courses - Kurse freischalten - Desbloquear cursos - Débloquer les cours - Desbloquear cursos' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp" %} - {% include "green_banner_image" %} - - {% include "catalog_courses" %} - {% include "catalog_page_info" %} - {% include "opinions" %} - {% include 'catalog_faq' %} - - {% assign banner_title = 'How to get the most out of Pipedrive? - Wie machen Sie das Beste aus Pipedrive? - ¿Cómo aprovechar al máximo Pipedrive? - Comment tirer pleinement parti de Pipedrive ? - Como aproveitar o Pipedrive ao máximo?' - %} - {% assign banner_text = ' - Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
- Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

- Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
- Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
-
- - Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur Marketingautomatisierung bis zu detaillierten Vertriebsberichten.
- Behalten Sie Ihre Leads und potenziellen Kunden mit der intuitiven Pipeline-Ansicht von Pipedrive im Blick. Erhalten Sie Benachrichtigungen, wenn Ihre Interessenten bereit sind, einen Deal abzuschließen, damit Sie genau im richtigen Moment nachfassen können.

- Zentralisieren Sie alle Kundeninformationen an einem Ort und integrieren Sie sie mit Ihren Tools für digitales Marketing. Ergänzen Sie benutzerdefinierte Felder für Kontakte und teilen Sie sie nach Branchen auf, damit Sie auf jeden Fall die heißesten Leads ansprechen.
- Fangen Sie heute an, Pipedrive zu nutzen, um das Beste aus Ihrem leistungsstarken CRM-Tool zu machen und dafür zu sorgen, dass die Deals fließen.
-
- - El CRM de Pipedrive está repleto de herramientas inteligentes para mejorar tus procesos de ventas y marketing. Nuestra plataforma de CRM ofrece todo, desde funciones de automatización de marketing hasta informes de ventas detallados.
- Mantente perfectamente al día con tus prospectos y clientes potenciales con la vista del embudo intuitiva de Pipedrive. Recibe una notificación cuando tus clientes potenciales estén listos para cerrar un trato para que puedas darle seguimiento en el momento preciso.

- Centraliza toda la información de tus clientes bajo un mismo techo e intégrala con tus herramientas de marketing digital. Añade campos personalizados para los contactos y sepáralos por industrias para asegurarte de que te diriges a los prospectos más interesados.
- Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.
-
- - Pipedrive est un CRM débordant d’outils intelligents, pensés pour améliorer vos processus de vente et de marketing. Notre plateforme de GRC embarque tous les outils possibles, allant du marketing automation aux reporting analytiques.
- Suivez vos leads et vos prospects depuis la vue en pipeline intuitive de Pipedrive. Recevez des notifications chaque fois que vos prospects signalent leur intérêt afin de les relancer au moment idéal.

- Centralisez l’ensemble de vos données clients dans un espace unique, et intégrez-y vos outils de marketing digital. Ajoutez des champs personnalisés à vos contacts et groupez-les par secteur d’activité pour affiner votre ciblage.
- Explorez dès aujourd’hui nos formations Pipedrive Learn pour libérer tout le potentiel de votre logiciel CRM et faire fructifier votre relation client.
-
- - O CRM Pipedrive CRM está cheio de ferramentas inteligentes para melhorar seus processos de vendas e de marketing. Nossa plataforma CRM oferece tudo - dos recursos de automatização do marketing aos relatórios detalhados sobre vendas.
- Simplifique o acompanhamento de leads e clientes potenciais com a visualização intuitiva de pipeline do Pipedrive. Receba notificações quando seus prospectos estiverem prontos para fechar um negócio para fazer o follow up no momento certo.

- Centralize todas as informações sobre clientes e faça a integração com as suas ferramentas de marketing digital. Adicione campos personalizados para contatos e separe-os por indústria para garantir que você foque nos leads certos.
- Comece a usar o Aprenda com o Pipedrive hoje para aproveitar ao máximo a sua poderosa ferramenta CRM e manter os negócios fluindo.
-
' - %} - {% assign banner_button_text = 'Start today - Beginnen Sie heute - Empieza hoy mismo - Commencez dès aujourd'hui - Comece hoje mesmo' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} - {% include "green_banner_image_alt" %} -
- - {% include "footer" %} - {% endif %} - {% if current_person.signed_in? == false and current_school.sso_active? %} - - {% endif %} - \ No newline at end of file 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 deleted file mode 100644 index c9cae27f..00000000 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/fr-homepage.html.liquid +++ /dev/null @@ -1,113 +0,0 @@ -{% comment %} skip-auth {% endcomment %} -{% if current_person.signed_in? == false and current_school.sso_active? == false %} - - {% else %} - {% include "header" %} - -
- {% if current_person.signed_in? %} - {% assign new_person = true %} - {% for course in courses.enrolled %} - {% if course.started? %} - {% assign new_person = false %} - {% break %} - {% endif %} - {% endfor %} - {% if new_person %} - {% include 'homepage_banner_new_person' %} - {% include 'homepage_recommended' %} - {% include "homepage_generic_cards" %} - {% include "homepage_page_info" %} - {% include "opinions" %} - {% include 'homepage_faq' %} - {% else %} - {% include 'homepage_banner' %} - {% include 'homepage_latest_courses' %} - - {% endif %} - {% else %} - {% assign banner_title = 'Pipedrive Learn - Pipedrive Learn - Pipedrive Aprende - Pipedrive Learn - Aprenda com o Pipedrive' - %} - {% assign banner_text = 'Welcome to Pipedrive Learn! Here, you’ll find CRM training videos to help you learn CRM management and sales skills. Explore everything from in-depth sales, marketing and CRM courses to quick tutorials on specific CRM tools. - Willkommen bei Pipedrive Learn! Hier finden Sie Übungsvideos, um Ihre Fähigkeiten in CRM-Management und Vertrieb auszubauen. Beginnend bei Kursen zum CRM über spezielle Vertriebsfragen bis hin zu Marketing und Kurz-Tutorials zu bestimmten CRM-Tools bietet Pipedrive Learn alles was Sie suchen. - ¡Bienvenido a Aprender con Pipedrive! Aquí encontrarás videos de capacitación de CRM para ayudarte a aprender habilidades de ventas y administración de CRM. Explora todo, desde cursos detallados de ventas, marketing y CRM hasta tutoriales rápidos sobre herramientas específicas de CRM. - Bienvenue dans Pipedrive Learn ! Cet espace de formation au CRM vous propose des vidéos didactiques pour optimiser votre relation client et développer vos compétences commerciales. Suivez nos cours approfondis sur la vente, le marketing et la GRC, ou nos tutoriels rapides sur des outils CRM spécifiques. - Bem-vindo(a) ao Aprenda com o Pipedrive! Aqui você encontra vídeos de treinamento para ajudar você a melhorar suas habilidades de vendas e de gestão de CRM. Explore cursos aprofundados sobre vendas, marketing e CRM e tutoriais curtos sobre ferramentas específicas.' - %} - {% assign banner_button_text = 'Register now - Jetzt anmelden - Regístrate ahora - Inscrivez-vous maintenant - Cadastre-se agora' - %} - {% assign banner_button_link = "#sso-widget" %} - {% include "green_banner_text" %} - - {% include "homepage_generic_cards" %} - {% include "homepage_page_info" %} - {% include "opinions" %} - {% include 'homepage_faq' %} - {% endif %} - - {% assign banner_title = 'How to get the most out of Pipedrive - Wie Sie das Beste aus Pipedrive herausholen - Cómo sacar el máximo partido a Pipedrive - Comment tirer le meilleur parti de Pipedrive - Como aproveitar o Pipedrive ao máximo' - %} - {% assign banner_text = ' - Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
- Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

- Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
- Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
-
- - Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur Marketingautomatisierung bis zu detaillierten Vertriebsberichten.
- Behalten Sie Ihre Leads und potenziellen Kunden mit der intuitiven Pipeline-Ansicht von Pipedrive im Blick. Erhalten Sie Benachrichtigungen, wenn Ihre Interessenten bereit sind, einen Deal abzuschließen, damit Sie genau im richtigen Moment nachfassen können.

- Zentralisieren Sie alle Kundeninformationen an einem Ort und integrieren Sie sie mit Ihren Tools für digitales Marketing. Ergänzen Sie benutzerdefinierte Felder für Kontakte und teilen Sie sie nach Branchen auf, damit Sie auf jeden Fall die heißesten Leads ansprechen.
- Fangen Sie heute an, Pipedrive zu nutzen, um das Beste aus Ihrem leistungsstarken CRM-Tool zu machen und dafür zu sorgen, dass die Deals fließen.
-
- - El CRM de Pipedrive está repleto de herramientas inteligentes para mejorar tus procesos de ventas y marketing. Nuestra plataforma de CRM ofrece todo, desde funciones de automatización de marketing hasta informes de ventas detallados.
- Mantente perfectamente al día con tus prospectos y clientes potenciales con la vista del embudo intuitiva de Pipedrive. Recibe una notificación cuando tus clientes potenciales estén listos para cerrar un trato para que puedas darle seguimiento en el momento preciso.

- Centraliza toda la información de tus clientes bajo un mismo techo e intégrala con tus herramientas de marketing digital. Añade campos personalizados para los contactos y sepáralos por industrias para asegurarte de que te diriges a los prospectos más interesados.
- Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.
-
- - Pipedrive est un CRM débordant d’outils intelligents, pensés pour améliorer vos processus de vente et de marketing. Notre plateforme de GRC embarque tous les outils possibles, allant du marketing automation aux reporting analytiques.
- Suivez vos leads et vos prospects depuis la vue en pipeline intuitive de Pipedrive. Recevez des notifications chaque fois que vos prospects signalent leur intérêt afin de les relancer au moment idéal.

- Centralisez l’ensemble de vos données clients dans un espace unique, et intégrez-y vos outils de marketing digital. Ajoutez des champs personnalisés à vos contacts et groupez-les par secteur d’activité pour affiner votre ciblage.
- Explorez dès aujourd’hui nos formations Pipedrive Learn pour libérer tout le potentiel de votre logiciel CRM et faire fructifier votre relation client.
-
- - O CRM Pipedrive CRM está cheio de ferramentas inteligentes para melhorar seus processos de vendas e de marketing. Nossa plataforma CRM oferece tudo - dos recursos de automatização do marketing aos relatórios detalhados sobre vendas.
- Simplifique o acompanhamento de leads e clientes potenciais com a visualização intuitiva de pipeline do Pipedrive. Receba notificações quando seus prospectos estiverem prontos para fechar um negócio para fazer o follow up no momento certo.

- Centralize todas as informações sobre clientes e faça a integração com as suas ferramentas de marketing digital. Adicione campos personalizados para contatos e separe-os por indústria para garantir que você foque nos leads certos.
- Comece a usar o Aprenda com o Pipedrive hoje para aproveitar ao máximo a sua poderosa ferramenta CRM e manter os negócios fluindo.
-
' - %} - {% assign banner_button_text = 'Start today - Beginnen Sie heute - Empieza hoy mismo - Commencez dès aujourd'hui - Comece hoje mesmo' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} - {% include "green_banner_image_alt" %} -
- - {% include "footer" %} - {% endif %} - - - \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/fr-video-tutorials.html.liquid b/Custom_Templates/customer_templates/Pipedrive Learn - CRM/fr-video-tutorials.html.liquid deleted file mode 100644 index 71475a38..00000000 --- a/Custom_Templates/customer_templates/Pipedrive Learn - CRM/fr-video-tutorials.html.liquid +++ /dev/null @@ -1,63 +0,0 @@ -{% comment %} skip-auth {% endcomment %} -{% if current_person.signed_in? == false and current_school.sso_active? == false %} - - {% else %} - {% include "header" %} - -
- {% assign banner_title = 'Video Tutorials - Video-Tutorials - Tutoriales en vídeo - Tutoriels vidéo - Tutoriais em vídeo' - %} - {% assign banner_text = 'Welcome to Pipedrive’s video tutorials section, where you’ll find video and CRM training resources to help your business grow with our CRM software. - Willkommen im Video-Tutorial-Bereich von Pipedrive. Hier finden Sie Videos und andere CRM-Schulungsressourcen, die Ihr Unternehmen beim Wachstum mit unserer CRM-Software unterstützen. - Bienvenido a la sección de tutoriales en vídeo de Pipedrive, donde encontrarás recursos de formación en vídeo y CRM para ayudar a tu empresa a crecer con nuestro software CRM. - Bienvenue dans la section des tutoriels vidéo de Pipedrive, où vous trouverez des vidéos et des ressources de formation CRM pour aider votre entreprise à se développer avec notre logiciel CRM. - Bem-vindo(a) à seção de tutoriais em vídeo da Pipedrive, onde você encontrará recursos de treinamento em vídeo e CRM para ajudar seu negócio a crescer com nosso software de CRM.' - %} - {% assign banner_button_text = 'Sign up for courses - Für Kurse anmelden - Inscríbete en los cursos - S'inscrire à des cours - Inscreva-se nos cursos' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-webinars.webp" %} - {% include "green_banner_image" %} - - {% include "video_tutorials_courses" %} - {% include "video_tutorials_page_info" %} - {% include 'opinions' %} - {% include 'video_tutorials_faq' %} - - {% unless current_person.signed_in? %} - {% assign banner_title = 'Unlock videos for free - Videos kostenlos freischalten - Desbloquear vídeos gratis - Débloquez des vidéos gratuitement - Desbloquear vídeos de graça' - %} - {% assign banner_text = "" %} - {% assign banner_button_text = 'Sign up - Anmelden - Regístrate - S'inscrire - Cadastre-se' - %} - {% assign banner_button_link = "#sso-widget" %} - {% include "green_banner_text_bg_image" %} - {% endunless %} -
- - {% include "footer" %} - {% endif %} - - {% if current_person.signed_in? == false and current_school.sso_active? %} - - {% endif %} - \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/catalog.html.liquid b/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/catalog.html.liquid deleted file mode 100644 index 8d2f5fe4..00000000 --- a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/catalog.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ -{% if current_person.signed_in? == false and current_school.sso_active? == false %} - -{% else %} - - - {% include "header" %} - -
- {% assign banner_title = 'Academy courses - Academy-Kurse - Cursos de la Academia - Cours de l'Académie - Cursos da Academia' - %} - {% assign banner_text = 'Welcome to Pipedrive’s Academy courses! Here, you’ll find virtual training programs and online video courses, to help you and your sales team develop your CRM and sales skills. These courses include in-depth video lessons that will empower you to improve each and every stage of your sales process. - Willkommen bei den Academy Kursen von Pipedrive! Hier finden Sie virtuelle Trainingsprogramme und Online-Video-Kurse, die Sie und Ihr Vertriebsteam dabei unterstützen, Ihre CRM- und Vertriebsfähigkeiten auszubauen. Dazu gehören detaillierte Video-Kurse, die Ihnen dabei helfen, jede einzelne Phase Ihres Vertriebsprozesses zu verbessern. - ¡Bienvenido a los cursos de la Academia Pipedrive! Aquí encontrarás programas de capacitación virtual y cursos de video en línea para ayudarte a ti y a tu equipo de ventas a desarrollar tus habilidades de ventas y CRM. Estos cursos incluyen lecciones detalladas en video que te capacitarán para mejorar todas y cada una de las etapas de tu proceso de ventas - Bienvenue dans les cours de l’Académie Pipedrive ! Cet espace de formation en ligne vous donne accès à des cours en vidéo qui vous aideront, vous et votre équipe commerciale, à développer vos compétences en vente et en CRM. Nos vidéos didactiques vous fourniront toutes les clés pour optimiser chacune des étapes de votre processus commercial. - Bem-vindo(a) aos cursos da Academia do Pipedrive! Aqui você vai encontrar programas de treinamento e cursos para ajudar você e sua equipe no desenvolvimento do conhecimento sobre CRM e vendas. Os cursos incluem vídeo aulas que ensinarão você a melhorar cada passo do seu processo de vendas.' - %} - {% assign banner_button_text = 'Unlock courses - Kurse freischalten - Desbloquear cursos - Débloquer les cours - Desbloquear cursos' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp" %} - {% include "green_banner_image" %} - - {% include "catalog_courses" %} - {% include "catalog_page_info" %} - {% include "opinions" %} - {% include 'catalog_faq' %} - - {% assign banner_title = 'How to get the most out of Pipedrive? - Wie machen Sie das Beste aus Pipedrive? - ¿Cómo aprovechar al máximo Pipedrive? - Comment tirer pleinement parti de Pipedrive ? - Como aproveitar o Pipedrive ao máximo?' - %} - {% assign banner_text = ' - Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
- Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

- Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
- Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
-
- - Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur Marketingautomatisierung bis zu detaillierten Vertriebsberichten.
- Behalten Sie Ihre Leads und potenziellen Kunden mit der intuitiven Pipeline-Ansicht von Pipedrive im Blick. Erhalten Sie Benachrichtigungen, wenn Ihre Interessenten bereit sind, einen Deal abzuschließen, damit Sie genau im richtigen Moment nachfassen können.

- Zentralisieren Sie alle Kundeninformationen an einem Ort und integrieren Sie sie mit Ihren Tools für digitales Marketing. Ergänzen Sie benutzerdefinierte Felder für Kontakte und teilen Sie sie nach Branchen auf, damit Sie auf jeden Fall die heißesten Leads ansprechen.
- Fangen Sie heute an, Pipedrive zu nutzen, um das Beste aus Ihrem leistungsstarken CRM-Tool zu machen und dafür zu sorgen, dass die Deals fließen.
-
- - El CRM de Pipedrive está repleto de herramientas inteligentes para mejorar tus procesos de ventas y marketing. Nuestra plataforma de CRM ofrece todo, desde funciones de automatización de marketing hasta informes de ventas detallados.
- Mantente perfectamente al día con tus prospectos y clientes potenciales con la vista del embudo intuitiva de Pipedrive. Recibe una notificación cuando tus clientes potenciales estén listos para cerrar un trato para que puedas darle seguimiento en el momento preciso.

- Centraliza toda la información de tus clientes bajo un mismo techo e intégrala con tus herramientas de marketing digital. Añade campos personalizados para los contactos y sepáralos por industrias para asegurarte de que te diriges a los prospectos más interesados.
- Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.
-
- - Pipedrive est un CRM débordant d’outils intelligents, pensés pour améliorer vos processus de vente et de marketing. Notre plateforme de GRC embarque tous les outils possibles, allant du marketing automation aux reporting analytiques.
- Suivez vos leads et vos prospects depuis la vue en pipeline intuitive de Pipedrive. Recevez des notifications chaque fois que vos prospects signalent leur intérêt afin de les relancer au moment idéal.

- Centralisez l’ensemble de vos données clients dans un espace unique, et intégrez-y vos outils de marketing digital. Ajoutez des champs personnalisés à vos contacts et groupez-les par secteur d’activité pour affiner votre ciblage.
- Explorez dès aujourd’hui nos formations Pipedrive Learn pour libérer tout le potentiel de votre logiciel CRM et faire fructifier votre relation client.
-
- - O CRM Pipedrive CRM está cheio de ferramentas inteligentes para melhorar seus processos de vendas e de marketing. Nossa plataforma CRM oferece tudo - dos recursos de automatização do marketing aos relatórios detalhados sobre vendas.
- Simplifique o acompanhamento de leads e clientes potenciais com a visualização intuitiva de pipeline do Pipedrive. Receba notificações quando seus prospectos estiverem prontos para fechar um negócio para fazer o follow up no momento certo.

- Centralize todas as informações sobre clientes e faça a integração com as suas ferramentas de marketing digital. Adicione campos personalizados para contatos e separe-os por indústria para garantir que você foque nos leads certos.
- Comece a usar o Aprenda com o Pipedrive hoje para aproveitar ao máximo a sua poderosa ferramenta CRM e manter os negócios fluindo.
-
' - %} - {% assign banner_button_text = 'Start today - Beginnen Sie heute - Empieza hoy mismo - Commencez dès aujourd'hui - Comece hoje mesmo' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} - {% include "green_banner_image_alt" %} -
- - {% include "footer" %} -{% endif %} -{% if current_person.signed_in? == false and current_school.sso_active? %} - -{% endif %} diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/homepage-test-new-registered.html.liquid b/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/homepage-test-new-registered.html.liquid deleted file mode 100644 index 78d597c6..00000000 --- a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/homepage-test-new-registered.html.liquid +++ /dev/null @@ -1,31 +0,0 @@ -{% include "header" %} -{% include 'sso_login_widget' %} -
- {% include 'homepage_banner_new_person' %} - {% include 'homepage_recommended' %} - {% include "homepage_generic_cards" %} - {% include "homepage_page_info" %} - {% include "opinions" %} - {% include 'homepage_faq' %} - - {% assign banner_title = 'How to get most out of Pipedrive? - - - - ' %} - {% assign banner_text = 'Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
- - - - ' %} - {% assign banner_button_text = 'Start today - - - - ' %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} - {% include "green_banner_image_alt" %} -
- -{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/homepage-test-not-registered.html.liquid b/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/homepage-test-not-registered.html.liquid deleted file mode 100644 index eb6fe1c1..00000000 --- a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/homepage-test-not-registered.html.liquid +++ /dev/null @@ -1,47 +0,0 @@ -{% include "header" %} - -
- {% assign banner_title = 'Pipedrive Learn - - - - ' %} - {% assign banner_text = 'Welcome to Pipedrive Learn! Here, you’ll find CRM training videos to help you learn CRM management and sales skills. Explore everything from in-depth sales, marketing and CRM courses to quick tutorials on specific CRM tools. - - - - ' %} - {% assign banner_button_text = 'Register now - - - - ' %} - {% assign banner_button_link = "#sso-widget" %} - {% include "green_banner_text" %} - - {% include "homepage_generic_cards" %} - {% include "homepage_page_info" %} - {% include "opinions" %} - {% include 'homepage_faq' %} - - {% assign banner_title = 'How to get most out of Pipedrive? - - - - ' %} - {% assign banner_text = 'Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
- - - - ' %} - {% assign banner_button_text = 'Start today - - - - ' %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} - {% include "green_banner_image_alt" %} -
- -{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/homepage-test-regular-registered.html.liquid b/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/homepage-test-regular-registered.html.liquid deleted file mode 100644 index f1d3d092..00000000 --- a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/homepage-test-regular-registered.html.liquid +++ /dev/null @@ -1,27 +0,0 @@ -{% include "header" %} - -
- {% include 'homepage_banner' %} - {% include 'homepage_latest_courses' %} - - {% assign banner_title = 'How to get most out of Pipedrive? - - - - ' %} - {% assign banner_text = 'Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
- - - - ' %} - {% assign banner_button_text = 'Start today - - - - ' %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} - {% include "green_banner_image_alt" %} -
- -{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/homepage.html.liquid b/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/homepage.html.liquid deleted file mode 100644 index 3d0c7a5a..00000000 --- a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/homepage.html.liquid +++ /dev/null @@ -1,119 +0,0 @@ -{% if current_person.signed_in? == false and current_school.sso_active? == false %} - -{% else %} - - - - {% include "header" %} - -
- {% if current_person.signed_in? %} - {% assign new_person = true %} - {% for course in courses.enrolled %} - {% if course.started? %} - {% assign new_person = false %} - {% break %} - {% endif %} - {% endfor %} - {% if new_person %} - {% include 'homepage_banner_new_person' %} - {% include 'homepage_recommended' %} - {% include "homepage_generic_cards" %} - {% include "homepage_page_info" %} - {% include "opinions" %} - {% include 'homepage_faq' %} - {% else %} - {% include 'homepage_banner' %} - {% include 'homepage_latest_courses' %} - - {% endif %} - {% else %} - {% assign banner_title = 'Pipedrive Learn - Pipedrive Learn - Pipedrive Aprende - Pipedrive Learn - Aprenda com o Pipedrive' - %} - {% assign banner_text = 'Welcome to Pipedrive Learn! Here, you’ll find CRM training videos to help you learn CRM management and sales skills. Explore everything from in-depth sales, marketing and CRM courses to quick tutorials on specific CRM tools. - Willkommen bei Pipedrive Learn! Hier finden Sie Übungsvideos, um Ihre Fähigkeiten in CRM-Management und Vertrieb auszubauen. Beginnend bei Kursen zum CRM über spezielle Vertriebsfragen bis hin zu Marketing und Kurz-Tutorials zu bestimmten CRM-Tools bietet Pipedrive Learn alles was Sie suchen. - ¡Bienvenido a Aprender con Pipedrive! Aquí encontrarás videos de capacitación de CRM para ayudarte a aprender habilidades de ventas y administración de CRM. Explora todo, desde cursos detallados de ventas, marketing y CRM hasta tutoriales rápidos sobre herramientas específicas de CRM. - Bienvenue dans Pipedrive Learn ! Cet espace de formation au CRM vous propose des vidéos didactiques pour optimiser votre relation client et développer vos compétences commerciales. Suivez nos cours approfondis sur la vente, le marketing et la GRC, ou nos tutoriels rapides sur des outils CRM spécifiques. - Bem-vindo(a) ao Aprenda com o Pipedrive! Aqui você encontra vídeos de treinamento para ajudar você a melhorar suas habilidades de vendas e de gestão de CRM. Explore cursos aprofundados sobre vendas, marketing e CRM e tutoriais curtos sobre ferramentas específicas.' - %} - {% assign banner_button_text = 'Register now - Jetzt anmelden - Regístrate ahora - Inscrivez-vous maintenant - Cadastre-se agora' - %} - {% assign banner_button_link = "#sso-widget" %} - {% include "green_banner_text" %} - - {% include "homepage_generic_cards" %} - {% include "homepage_page_info" %} - {% include "opinions" %} - {% include 'homepage_faq' %} - {% endif %} - - {% assign banner_title = 'How to get the most out of Pipedrive - Wie Sie das Beste aus Pipedrive herausholen - Cómo sacar el máximo partido a Pipedrive - Comment tirer le meilleur parti de Pipedrive - Como aproveitar o Pipedrive ao máximo' - %} - {% assign banner_text = ' - Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from marketing automation features to in-depth sales reports.
- Seamlessly keep track of leads and potential customers with Pipedrive’s intuitive pipeline view. Get notified when your prospects are ready to close a deal so you can follow up at precisely the right time.

- Centralize all your customer information under one roof and integrate it with your digital marketing tools. Add custom fields for contacts and separate them by industries to ensure you target the hottest leads.
- Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.
-
- - Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur Marketingautomatisierung bis zu detaillierten Vertriebsberichten.
- Behalten Sie Ihre Leads und potenziellen Kunden mit der intuitiven Pipeline-Ansicht von Pipedrive im Blick. Erhalten Sie Benachrichtigungen, wenn Ihre Interessenten bereit sind, einen Deal abzuschließen, damit Sie genau im richtigen Moment nachfassen können.

- Zentralisieren Sie alle Kundeninformationen an einem Ort und integrieren Sie sie mit Ihren Tools für digitales Marketing. Ergänzen Sie benutzerdefinierte Felder für Kontakte und teilen Sie sie nach Branchen auf, damit Sie auf jeden Fall die heißesten Leads ansprechen.
- Fangen Sie heute an, Pipedrive zu nutzen, um das Beste aus Ihrem leistungsstarken CRM-Tool zu machen und dafür zu sorgen, dass die Deals fließen.
-
- - El CRM de Pipedrive está repleto de herramientas inteligentes para mejorar tus procesos de ventas y marketing. Nuestra plataforma de CRM ofrece todo, desde funciones de automatización de marketing hasta informes de ventas detallados.
- Mantente perfectamente al día con tus prospectos y clientes potenciales con la vista del embudo intuitiva de Pipedrive. Recibe una notificación cuando tus clientes potenciales estén listos para cerrar un trato para que puedas darle seguimiento en el momento preciso.

- Centraliza toda la información de tus clientes bajo un mismo techo e intégrala con tus herramientas de marketing digital. Añade campos personalizados para los contactos y sepáralos por industrias para asegurarte de que te diriges a los prospectos más interesados.
- Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.
-
- - Pipedrive est un CRM débordant d’outils intelligents, pensés pour améliorer vos processus de vente et de marketing. Notre plateforme de GRC embarque tous les outils possibles, allant du marketing automation aux reporting analytiques.
- Suivez vos leads et vos prospects depuis la vue en pipeline intuitive de Pipedrive. Recevez des notifications chaque fois que vos prospects signalent leur intérêt afin de les relancer au moment idéal.

- Centralisez l’ensemble de vos données clients dans un espace unique, et intégrez-y vos outils de marketing digital. Ajoutez des champs personnalisés à vos contacts et groupez-les par secteur d’activité pour affiner votre ciblage.
- Explorez dès aujourd’hui nos formations Pipedrive Learn pour libérer tout le potentiel de votre logiciel CRM et faire fructifier votre relation client.
-
- - O CRM Pipedrive CRM está cheio de ferramentas inteligentes para melhorar seus processos de vendas e de marketing. Nossa plataforma CRM oferece tudo - dos recursos de automatização do marketing aos relatórios detalhados sobre vendas.
- Simplifique o acompanhamento de leads e clientes potenciais com a visualização intuitiva de pipeline do Pipedrive. Receba notificações quando seus prospectos estiverem prontos para fechar um negócio para fazer o follow up no momento certo.

- Centralize todas as informações sobre clientes e faça a integração com as suas ferramentas de marketing digital. Adicione campos personalizados para contatos e separe-os por indústria para garantir que você foque nos leads certos.
- Comece a usar o Aprenda com o Pipedrive hoje para aproveitar ao máximo a sua poderosa ferramenta CRM e manter os negócios fluindo.
-
' - %} - {% assign banner_button_text = 'Start today - Beginnen Sie heute - Empieza hoy mismo - Commencez dès aujourd'hui - Comece hoje mesmo' - %} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %} - {% include "green_banner_image_alt" %} -
- - {% include "footer" %} -{% endif %} - - diff --git a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/video-tutorials.html.liquid b/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/video-tutorials.html.liquid deleted file mode 100644 index b6310d4f..00000000 --- a/Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/video-tutorials.html.liquid +++ /dev/null @@ -1,62 +0,0 @@ -{% comment %} skip-auth {% endcomment %} -{% if current_person.signed_in? == false and current_school.sso_active? == false %} - -{% else %} - {% include "header" %} - -
- {% assign banner_title = 'Video Tutorials - Video-Tutorials - Tutoriales en vídeo - Tutoriels vidéo - Tutoriais em vídeo' - %} - {% assign banner_text = 'Welcome to Pipedrive’s video tutorials section, where you’ll find video and CRM training resources to help your business grow with our CRM software. - Willkommen im Video-Tutorial-Bereich von Pipedrive. Hier finden Sie Videos und andere CRM-Schulungsressourcen, die Ihr Unternehmen beim Wachstum mit unserer CRM-Software unterstützen. - Bienvenido a la sección de tutoriales en vídeo de Pipedrive, donde encontrarás recursos de formación en vídeo y CRM para ayudar a tu empresa a crecer con nuestro software CRM. - Bienvenue dans la section des tutoriels vidéo de Pipedrive, où vous trouverez des vidéos et des ressources de formation CRM pour aider votre entreprise à se développer avec notre logiciel CRM. - Bem-vindo(a) à seção de tutoriais em vídeo da Pipedrive, onde você encontrará recursos de treinamento em vídeo e CRM para ajudar seu negócio a crescer com nosso software de CRM.' - %} - {% assign banner_button_text = 'Sign up for courses - Für Kurse anmelden - Inscríbete en los cursos - S'inscrire à des cours - Inscreva-se nos cursos' -%} - {% assign banner_button_link = "#sso-widget" %} - {% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-webinars.webp" %} - {% include "green_banner_image" %} - - {% include "video_tutorials_courses" %} - {% include "video_tutorials_page_info" %} - {% include 'opinions' %} - {% include 'video_tutorials_faq' %} - - {% unless current_person.signed_in? %} - {% assign banner_title = 'Unlock videos for free - Videos kostenlos freischalten - Desbloquear vídeos gratis - Débloquez des vidéos gratuitement - Desbloquear vídeos de graça' - %} - {% assign banner_text = "" %} - {% assign banner_button_text = 'Sign up - Anmelden - Regístrate - S'inscrire - Cadastre-se' - %} - {% assign banner_button_link = "#sso-widget" %} - {% include "green_banner_text_bg_image" %} - {% endunless %} -
- - {% include "footer" %} -{% endif %} - -{% if current_person.signed_in? == false and current_school.sso_active? %} - -{% endif %}