Larson Texts notes. Lots of Pipedrive Template changes. Started my GS Script for Timeline events.
This commit is contained in:
@ -1,33 +1,33 @@
|
||||
<div class="avatar-text">
|
||||
<h4 class="strong">
|
||||
<span class="lang-en">Profile picture</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Profilbild</span>
|
||||
<span class="lang-es">Foto de perfil</span>
|
||||
<span class="lang-fr">Photo de profil</span>
|
||||
<span class="lang-br">Foto do perfil</span>
|
||||
</h4>
|
||||
<div>
|
||||
<span class="lang-en">Photo helps personalize your account</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Personalisieren Sie Ihr Konto mit einem Foto</span>
|
||||
<span class="lang-es">La foto ayuda a personalizar su cuenta</span>
|
||||
<span class="lang-fr">La photo permet de personnaliser votre compte</span>
|
||||
<span class="lang-br">A foto ajuda a personalizar sua conta</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<img
|
||||
alt="default avatar"
|
||||
class="np-account-avatar-image"
|
||||
src="https://s3.amazonaws.com/static.northpass.com/pipedrive/Avatar.png"
|
||||
id="{{version}}_gravatar_img"
|
||||
{% unless form.use_gravatar? %}style="display: none"{% endunless %}
|
||||
alt="default avatar"
|
||||
class="np-account-avatar-image"
|
||||
src="https://s3.amazonaws.com/static.northpass.com/pipedrive/Avatar.png"
|
||||
id="{{version}}_gravatar_img"
|
||||
{% unless form.use_gravatar? %}style="display: none"{% endunless %}
|
||||
/>
|
||||
<img
|
||||
alt="avatar"
|
||||
class="np-account-avatar-image"
|
||||
src="{% if form.secure_custom_avatar_url contains "https://secure.gravatar.com/avatar" %}https://s3.amazonaws.com/static.northpass.com/pipedrive/Avatar.png{% else %}{{ form.secure_custom_avatar_url }}{% endif %}"
|
||||
id="{{version}}_custom_avatar_img"
|
||||
{% if form.use_gravatar? %}style="display: none"{% endif %}
|
||||
alt="avatar"
|
||||
class="np-account-avatar-image"
|
||||
src="{% if form.secure_custom_avatar_url contains "https://secure.gravatar.com/avatar" %}https://s3.amazonaws.com/static.northpass.com/pipedrive/Avatar.png{% else %}{{ form.secure_custom_avatar_url }}{% endif %}"
|
||||
id="{{version}}_custom_avatar_img"
|
||||
{% if form.use_gravatar? %}style="display: none"{% endif %}
|
||||
/>
|
||||
|
||||
<div class="np-account-avatar-choice">
|
||||
@ -35,36 +35,36 @@
|
||||
<label class="radio radio-before np-input-label" for="{{version}}_learner_use_gravatar_true">
|
||||
<span class="radio__input">
|
||||
<input
|
||||
id="{{version}}_learner_use_gravatar_true"
|
||||
name="learner[use_gravatar]"
|
||||
type="radio"
|
||||
value="true"
|
||||
{% if form.use_gravatar? %}checked{% endif %}
|
||||
id="{{version}}_learner_use_gravatar_true"
|
||||
name="learner[use_gravatar]"
|
||||
type="radio"
|
||||
value="true"
|
||||
{% if form.use_gravatar? %}checked{% endif %}
|
||||
/>
|
||||
<span class="np-button-color radio__control"></span>
|
||||
</span>
|
||||
<span class="radio__label"></span>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="np-form-field np-hidden">
|
||||
<label class="radio radio-before np-input-label" for="{{version}}_learner_use_gravatar_false">
|
||||
<span class="radio__input">
|
||||
<input
|
||||
id="{{version}}_learner_use_gravatar_false"
|
||||
name="learner[use_gravatar]"
|
||||
type="radio"
|
||||
value="false"
|
||||
{% unless form.use_gravatar? %}checked{% endunless %}
|
||||
id="{{version}}_learner_use_gravatar_false"
|
||||
name="learner[use_gravatar]"
|
||||
type="radio"
|
||||
value="false"
|
||||
{% unless form.use_gravatar? %}checked{% endunless %}
|
||||
/>
|
||||
<span class="np-button-color radio__control"></span>
|
||||
</span>
|
||||
<span class="radio__label">
|
||||
<span class="lang-en">Upload custom photo</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Foto hochladen</span>
|
||||
<span class="lang-es">Subir foto personalizada</span>
|
||||
<span class="lang-fr">Téléverser une photo personnalisée</span>
|
||||
<span class="lang-br">Carregar foto personalizada</span>
|
||||
</span>
|
||||
</label>
|
||||
</div>
|
||||
@ -75,10 +75,10 @@
|
||||
>
|
||||
<i class="far fa-paperclip"></i>
|
||||
<span class="lang-en">Upload custom photo</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Foto hochladen</span>
|
||||
<span class="lang-es">Subir foto personalizada</span>
|
||||
<span class="lang-fr">Téléverser une photo personnalisée</span>
|
||||
<span class="lang-br">Carregar foto personalizada</span>
|
||||
</button>
|
||||
<div class="avatar-checkbox-wrapper" onclick="toggleGravatar()">
|
||||
<div class="avatar-checkbox {% if form.use_gravatar? %} avatar-checkbox-selected {% endif %}" id="gravatar-checkbox">
|
||||
@ -88,66 +88,66 @@
|
||||
</div>
|
||||
<span>
|
||||
<span class="lang-en">Use default avatar</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Standard-Avatar verwenden</span>
|
||||
<span class="lang-es">Usar avatar predeterminado</span>
|
||||
<span class="lang-fr">Utiliser l'avatar par défaut</span>
|
||||
<span class="lang-br">Use o avatar padrão</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
#desktop_custom_avatar_img {
|
||||
border-radius: 50%;
|
||||
border: 2px solid #E4E6E9;
|
||||
}
|
||||
.avatar-text > h4 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.np-account-avatar-choice {
|
||||
margin-left: 0;
|
||||
}
|
||||
.avatar-checkbox {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border: 1px solid var(--black-digital);
|
||||
border-radius: 2px;
|
||||
}
|
||||
.avatar-checkbox-wrapper {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
.avatar-checkbox.avatar-checkbox-selected {
|
||||
border: none;
|
||||
background: var(--green);
|
||||
display: flex;
|
||||
}
|
||||
.avatar-checkbox-mark {
|
||||
display: none;
|
||||
margin: auto;
|
||||
}
|
||||
.avatar-checkbox.avatar-checkbox-selected .avatar-checkbox-mark {
|
||||
display: block;
|
||||
}
|
||||
.upload-avatar-button {
|
||||
border: none;
|
||||
background: none;
|
||||
color: #0070D6;
|
||||
margin-bottom: 20px;
|
||||
padding: 0;
|
||||
}
|
||||
.upload-avatar-button:hover {
|
||||
color: #0055a3;
|
||||
}
|
||||
.upload-avatar-button > i {
|
||||
rotate: -45deg;
|
||||
}
|
||||
#desktop_gravatar_img {
|
||||
border: 2px solid #E4E6E9;
|
||||
border-radius: 50%;
|
||||
}
|
||||
#desktop_custom_avatar_img {
|
||||
border-radius: 50%;
|
||||
border: 2px solid #E4E6E9;
|
||||
}
|
||||
.avatar-text > h4 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.np-account-avatar-choice {
|
||||
margin-left: 0;
|
||||
}
|
||||
.avatar-checkbox {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border: 1px solid var(--black-digital);
|
||||
border-radius: 2px;
|
||||
}
|
||||
.avatar-checkbox-wrapper {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
.avatar-checkbox.avatar-checkbox-selected {
|
||||
border: none;
|
||||
background: var(--green);
|
||||
display: flex;
|
||||
}
|
||||
.avatar-checkbox-mark {
|
||||
display: none;
|
||||
margin: auto;
|
||||
}
|
||||
.avatar-checkbox.avatar-checkbox-selected .avatar-checkbox-mark {
|
||||
display: block;
|
||||
}
|
||||
.upload-avatar-button {
|
||||
border: none;
|
||||
background: none;
|
||||
color: #0070D6;
|
||||
margin-bottom: 20px;
|
||||
padding: 0;
|
||||
}
|
||||
.upload-avatar-button:hover {
|
||||
color: #0055a3;
|
||||
}
|
||||
.upload-avatar-button > i {
|
||||
rotate: -45deg;
|
||||
}
|
||||
#desktop_gravatar_img {
|
||||
border: 2px solid #E4E6E9;
|
||||
border-radius: 50%;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
@ -162,11 +162,11 @@
|
||||
}
|
||||
}
|
||||
{% if current_person.avatar_url contains "https://secure.gravatar.com/avatar" and form.use_gravatar? == false %}
|
||||
window.addEventListener("DOMContentLoaded", () => {
|
||||
let a = document.querySelector('#gravatar-checkbox');
|
||||
if (!a.classList.contains('avatar-checkbox-selected')) {
|
||||
a.click()
|
||||
}
|
||||
})
|
||||
window.addEventListener("DOMContentLoaded", () => {
|
||||
let a = document.querySelector('#gravatar-checkbox');
|
||||
if (!a.classList.contains('avatar-checkbox-selected')) {
|
||||
a.click()
|
||||
}
|
||||
})
|
||||
{% endif %}
|
||||
</script>
|
||||
|
||||
@ -1,27 +1,27 @@
|
||||
<div class="account-deletion">
|
||||
<h4 class="strong">
|
||||
<span class="lang-en">Delete your account</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Ihr Konto löschen</span>
|
||||
<span class="lang-es">Eliminar tu cuenta</span>
|
||||
<span class="lang-fr">Supprimer votre compte</span>
|
||||
<span class="lang-br">Exclua sua conta</span>
|
||||
</h4>
|
||||
<div class="account-deletion-description">
|
||||
<span class="lang-en">Your account will be permanently deleted and you will no longer be able to access any data or information associated with this account. This action cannot be undone.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Ihr Account wird dauerhaft gelöscht und Sie haben keinen Zugriff mehr auf die mit diesem Konto verbundenen Daten und Informationen. Diese Aktion kann nicht rückgängig gemacht werden.</span>
|
||||
<span class="lang-es">Tu cuenta será eliminada permanentemente y ya no podrás acceder a ningún dato o información asociada a esta cuenta. Esta acción no se puede deshacer.</span>
|
||||
<span class="lang-fr">Votre compte sera définitivement supprimé et vous ne pourrez plus accéder aux données ou informations associées à ce compte. Cette action ne peut être annulée.</span>
|
||||
<span class="lang-br">Sua conta será excluída permanentemente e você não poderá mais acessar quaisquer dados ou informações associados a ela. Esta ação não pode ser desfeita.</span>
|
||||
</div>
|
||||
<div class="button-1 button-large button-deletion" onclick="
|
||||
document.querySelector('.account-deletion-popup-wrapper').classList.remove('np-hidden');
|
||||
document.querySelector('.account-deletion-popup').classList.remove('np-hidden');"
|
||||
>
|
||||
<span class="lang-en">Delete my account</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Meinen Account löschen</span>
|
||||
<span class="lang-es">Eliminar mi cuenta</span>
|
||||
<span class="lang-fr">Supprimer mon compte</span>
|
||||
<span class="lang-br">Excluir minha conta</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -34,26 +34,26 @@
|
||||
<div class="account-deletion-popup-confirmation">
|
||||
<label class="account-deletion-confirmation-label" for="account-deletion-confirmation-input">
|
||||
<span class="lang-en">To confirm account deletion, type <em>delete</em> in the field below.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Um die Löschung des Accounts zu bestätigen, geben Sie <em>löschen</em> in das Feld unten ein.</span>
|
||||
<span class="lang-es">Para confirmar la eliminación de la cuenta, escribe <em>eliminar</em> en el siguiente campo.</span>
|
||||
<span class="lang-fr">Pour confirmer la suppression de votre compte, tapez <em>supprimer</em> dans le champ ci-dessous.</span>
|
||||
<span class="lang-br">Para confirmar a exclusão da conta, digite <em>excluir</em> no campo abaixo.</span>
|
||||
</label>
|
||||
<input id="account-deletion-confirmation-input" class="np-input" placeholder="delete" autocomplete="off">
|
||||
<div id="confirm-deletion" class="button-1 button-medium button-deletion button-deletion-disabled" onclick="sendDeleteRequest();">
|
||||
<span class="lang-en">Delete</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">löschen</span>
|
||||
<span class="lang-es">Eliminar</span>
|
||||
<span class="lang-fr">Supprimer</span>
|
||||
<span class="lang-br">Excluir</span>
|
||||
</div>
|
||||
</div>
|
||||
<h5 class="account-deletion-popup-goodbye np-hidden">
|
||||
<span class="lang-en">Your account will be deleted shortly</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Ihr Account wird in Kürze gelöscht</span>
|
||||
<span class="lang-es">Tu cuenta será eliminada en breve</span>
|
||||
<span class="lang-fr">Votre compte sera supprimé dans les plus brefs délais</span>
|
||||
<span class="lang-br">Sua conta será excluída em breve</span>
|
||||
</h5>
|
||||
</div>
|
||||
<style>
|
||||
@ -118,40 +118,43 @@
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
const deletionInput = document.getElementById('account-deletion-confirmation-input');
|
||||
|
||||
deletionInput.addEventListener('input', () => {
|
||||
const button = document.querySelector('#confirm-deletion');
|
||||
if (deletionInput.value.toLowerCase() !== 'delete') {
|
||||
button.classList.add('button-deletion-disabled');
|
||||
} else {
|
||||
button.classList.remove('button-deletion-disabled');
|
||||
}
|
||||
});
|
||||
|
||||
function sendDeleteRequest() {
|
||||
document.querySelector('.account-deletion-popup-confirmation').classList.add('np-hidden');
|
||||
document.querySelector('.account-deletion-popup-goodbye').classList.remove('np-hidden');
|
||||
const personUUID = '{{ current_person.id }}';
|
||||
const personEmail = '{{ current_person.email }}'
|
||||
const personTime = '{{ current_person.created_at | replace_first: " ", "T" | replace_first: " +0000", ".000000+00:00" }}';
|
||||
const xhr = new XMLHttpRequest();
|
||||
{% if current_school.sso_active? %}
|
||||
var url = 'https://www.workato.com/webhooks/rest/bd1a1eb7-7e79-4208-a1db-8e9c7440bcc9/pipedrive-sso-delete-myself'
|
||||
{% else %}
|
||||
var url = 'https://www.workato.com/webhooks/rest/bd1a1eb7-7e79-4208-a1db-8e9c7440bcc9/pipedrive-open-delete-myself'
|
||||
{% endif %}
|
||||
xhr.open('POST', url);
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.send(JSON.stringify({
|
||||
"personUUID": personUUID,
|
||||
"personEmail": personEmail,
|
||||
"personTime": personTime
|
||||
}));
|
||||
xhr.addEventListener('load', () => {
|
||||
setTimeout(() => {
|
||||
window.location.replace('/learners/sign_out');
|
||||
}, 3000);
|
||||
{% if current_school.properties.sandbox == false %}
|
||||
const deletionInput = document.getElementById('account-deletion-confirmation-input');
|
||||
|
||||
deletionInput.addEventListener('input', () => {
|
||||
const button = document.querySelector('#confirm-deletion');
|
||||
if (deletionInput.value.toLowerCase() !== 'delete') {
|
||||
button.classList.add('button-deletion-disabled');
|
||||
} else {
|
||||
button.classList.remove('button-deletion-disabled');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function sendDeleteRequest() {
|
||||
document.querySelector('.account-deletion-popup-confirmation').classList.add('np-hidden');
|
||||
document.querySelector('.account-deletion-popup-goodbye').classList.remove('np-hidden');
|
||||
const personUUID = '{{ current_person.id }}';
|
||||
const personEmail = '{{ current_person.email }}'
|
||||
const personTime = '{{ current_person.created_at | replace_first: " ", "T" | replace_first: " +0000", ".000000+00:00" }}';
|
||||
const xhr = new XMLHttpRequest();
|
||||
|
||||
{% if current_school.sso_active? %}
|
||||
var url = 'https://www.workato.com/webhooks/rest/bd1a1eb7-7e79-4208-a1db-8e9c7440bcc9/pipedrive-sso-delete-myself'
|
||||
{% else %}
|
||||
var url = 'https://www.workato.com/webhooks/rest/bd1a1eb7-7e79-4208-a1db-8e9c7440bcc9/pipedrive-open-delete-myself'
|
||||
{% endif %}
|
||||
xhr.open('POST', url);
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.send(JSON.stringify({
|
||||
"personUUID": personUUID,
|
||||
"personEmail": personEmail,
|
||||
"personTime": personTime
|
||||
}));
|
||||
xhr.addEventListener('load', () => {
|
||||
setTimeout(() => {
|
||||
window.location.replace('/learners/sign_out');
|
||||
}, 3000);
|
||||
});
|
||||
}
|
||||
{% endif %}
|
||||
</script>
|
||||
|
||||
@ -5,20 +5,20 @@
|
||||
<div class="container">
|
||||
<h1 class="account-form-title">
|
||||
<span class="lang-en">My profile</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Mein Profil</span>
|
||||
<span class="lang-es">Mi perfil</span>
|
||||
<span class="lang-fr">Mon profil</span>
|
||||
<span class="lang-br">Meu perfil</span>
|
||||
</h1>
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-7 np-account-form">
|
||||
{% render "account_form", form: form, version: "desktop" %}
|
||||
<button type="submit" class="np-button np-button-big np-button-large-font np-form-action">
|
||||
<span class="lang-en">Save profile</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Profil speichern</span>
|
||||
<span class="lang-es">Guardar perfil</span>
|
||||
<span class="lang-fr">Sauvegarder le profil</span>
|
||||
<span class="lang-br">Salvar perfil</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="col-xs-12 col-md-5">
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
<div class="np-form-field {% if form.errors contains 'email' %}np-account-form-field-error{% endif %}">
|
||||
<label class="account-label" for="{{version}}_learner_email">
|
||||
<span class="lang-en">Email</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span> *
|
||||
<span class="lang-de">E-Mail</span>
|
||||
<span class="lang-es">Correo electrónico</span>
|
||||
<span class="lang-fr">E-mail</span>
|
||||
<span class="lang-br">Email</span> *
|
||||
</label>
|
||||
<input
|
||||
{% if form.options.invite? %} disabled {% endif %}
|
||||
@ -19,10 +19,10 @@
|
||||
<div class="np-form-field {% if form.errors contains 'first_name' %}np-account-form-field-error{% endif %}">
|
||||
<label class="account-label" for="{{version}}_learner_first_name">
|
||||
<span class="lang-en">First name</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span> *
|
||||
<span class="lang-de">Vorname</span>
|
||||
<span class="lang-es">Nombre de pila</span>
|
||||
<span class="lang-fr">Prénom</span>
|
||||
<span class="lang-br">Nome</span> *
|
||||
</label>
|
||||
<input
|
||||
class="np-input"
|
||||
@ -34,10 +34,10 @@
|
||||
<div class="np-form-field {% if form.errors contains 'last_name' %}np-account-form-field-error{% endif %}">
|
||||
<label class="account-label" for="{{version}}_learner_last_name">
|
||||
<span class="lang-en">Last name</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span> *
|
||||
<span class="lang-de">Nachname</span>
|
||||
<span class="lang-es">Apellidos</span>
|
||||
<span class="lang-fr">Nom de famille</span>
|
||||
<span class="lang-br">Sobrenome</span> *
|
||||
</label>
|
||||
<input
|
||||
class="np-input"
|
||||
@ -46,7 +46,7 @@
|
||||
value="{{ form.last_name }}"
|
||||
/>
|
||||
</div>
|
||||
<div class="np-form-field {% if form.errors contains 'display_name' %}np-account-form-field-error{% endif %}">
|
||||
<div class="np-form-field {% if form.errors contains 'display_name' %}np-account-form-field-error{% endif %}" style="display: none">
|
||||
<label class="account-label" for="{{version}}_learner_display_name">
|
||||
<span class="lang-en">Display name</span>
|
||||
<span class="lang-de"></span>
|
||||
@ -66,10 +66,10 @@
|
||||
<div class="np-form-field {% if form.errors contains 'current_password' %}np-account-form-field-error{% endif %}">
|
||||
<label class="account-label" for="{{version}}_learner_current_password">
|
||||
<span class="lang-en">Current password</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Aktuelles Passwort</span>
|
||||
<span class="lang-es">Contraseña actual</span>
|
||||
<span class="lang-fr">Mot de passe actuel</span>
|
||||
<span class="lang-br">Senha atual</span>
|
||||
</label>
|
||||
<input
|
||||
class="np-input"
|
||||
@ -82,10 +82,10 @@
|
||||
<div class="np-form-field {% if form.errors contains 'password' %}np-account-form-field-error{% endif %}">
|
||||
<label class="account-label" for="{{version}}_learner_password">
|
||||
<span class="lang-en">New password</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Neues Passwort</span>
|
||||
<span class="lang-es">Nueva contraseña</span>
|
||||
<span class="lang-fr">Nouveau mot de passe</span>
|
||||
<span class="lang-br">Nova senha</span>
|
||||
</label>
|
||||
<input
|
||||
class="np-input"
|
||||
@ -98,10 +98,10 @@
|
||||
<div class="np-form-field {% if form.errors contains 'password_confirmation' %}np-account-form-field-error{% endif %}">
|
||||
<label class="account-label" for="{{version}}_learner_password_confirmation">
|
||||
<span class="lang-en">Confirm new password</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Passwort bestätigen</span>
|
||||
<span class="lang-es">Confirmar nueva contraseña</span>
|
||||
<span class="lang-fr">Confirmer le mot de passe</span>
|
||||
<span class="lang-br">Confirmar nova senha</span>
|
||||
</label>
|
||||
<input
|
||||
class="np-input"
|
||||
@ -116,10 +116,10 @@
|
||||
<div class="np-form-field {% if form.errors contains 'password' %}np-account-form-field-error{% endif %}">
|
||||
<label class="account-label" for="{{version}}_learner_password">
|
||||
<span class="lang-en">Password</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span> *
|
||||
<span class="lang-de">Passwort</span>
|
||||
<span class="lang-es">Contraseña</span>
|
||||
<span class="lang-fr">Mot de passe</span>
|
||||
<span class="lang-br">Senha</span> *
|
||||
</label>
|
||||
<input
|
||||
class="np-input"
|
||||
@ -146,14 +146,22 @@
|
||||
</div>
|
||||
{% else %}
|
||||
<div class="np-margin-top">
|
||||
<span class="np-form-terms ">
|
||||
{% t .terms %}
|
||||
<span class="np-form-terms">
|
||||
<span class="lang-en">By submitting this form you agree to the </span>
|
||||
<span class="lang-de">Mit dem Absenden dieses Formulars erklären Sie sich mit den </span>
|
||||
<span class="lang-es">Al enviar este formulario acepta las </span>
|
||||
<span class="lang-fr">En soumettant ce formulaire, vous acceptez les </span>
|
||||
<span class="lang-br">Ao enviar este formulário, você concorda com os </span>
|
||||
<a
|
||||
class="np-form-link np-button-color"
|
||||
target="_blank"
|
||||
href={{ form.terms_of_service_url }}
|
||||
>
|
||||
{% t .terms_link %}
|
||||
<span class="lang-en">Terms of Use</span>
|
||||
<span class="lang-de">Nutzungsbedingungen einverstanden</span>
|
||||
<span class="lang-es">Condiciones de uso</span>
|
||||
<span class="lang-fr">conditions d'utilisation.</span>
|
||||
<span class="lang-br">Termos de Uso</span>
|
||||
</a>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
{% capture course_path %}{% route course, id: course.id %}{% endcapture %}
|
||||
{% assign scaled_image_url = "" | append: course.image_url | replace: "resize=width:819,height:503", "resize=width:912,height:503" %}
|
||||
|
||||
<div class="course-card col-xs-12 col-sm-6 col-lg-4" item-categories="{{ course.categories | map: 'id' | join: " " }}">
|
||||
<div class="course-card col-xs-12 col-sm-6 col-lg-4" language="{{course.properties.course_language}}" item-categories="{{ course.categories | map: 'id' | join: " " }}">
|
||||
<a class="course-card-wrapper" href="{{ course_path }}">
|
||||
{% if course.ribbon and course.ribbon.size > 0 %}
|
||||
{% assign course_ribbon_uppercase = course.ribbon | upcase %}
|
||||
@ -13,22 +13,22 @@
|
||||
{{ course.ribbon }}
|
||||
</div>
|
||||
{% endif %}
|
||||
<img class="course-card-image" src="{{ scaled_image_url }}" alt="Learn Pipedrive - {{ course.name }}">
|
||||
<img class="course-card-image" src="{{ scaled_image_url }}" alt="{{ course.name }}">
|
||||
<div class="course-card-content">
|
||||
<div class="course-card-info body-xs">
|
||||
{{ activities_count }}
|
||||
{% if activities_count == 1 %}
|
||||
<span class="lang-en">lesson</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Lektion</span>
|
||||
<span class="lang-es">lección</span>
|
||||
<span class="lang-fr">leçon</span>
|
||||
<span class="lang-br">lição</span>
|
||||
{% else %}
|
||||
<span class="lang-en">lessons</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Lektionen</span>
|
||||
<span class="lang-es">lecciones</span>
|
||||
<span class="lang-fr">leçons</span>
|
||||
<span class="lang-br">lições</span>
|
||||
{% endif %}
|
||||
<span class="course-card-info-separator">|</span>
|
||||
{% if course.properties.course_time != 'NULL' %}
|
||||
@ -56,16 +56,16 @@
|
||||
<div class="button-2 button-medium">
|
||||
{% if course.started? %}
|
||||
<span class="lang-en">Continue</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Weiter</span>
|
||||
<span class="lang-es">Continuar</span>
|
||||
<span class="lang-fr">Continuer</span>
|
||||
<span class="lang-br">Continuar</span>
|
||||
{% else %}
|
||||
<span class="lang-en">Take this course</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Diesen Kurs belegen</span>
|
||||
<span class="lang-es">Tomar este curso</span>
|
||||
<span class="lang-fr">Suivre ce cours</span>
|
||||
<span class="lang-br">Faça este curso</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -3,25 +3,25 @@
|
||||
{% assign activities_count = activities_count | plus: section.activities.size %}
|
||||
{% endfor %}
|
||||
|
||||
<a class="homepage-card-wrapper" href="{% route course, id: course.id %}">
|
||||
<a class="homepage-card-wrapper" language="{{course.properties.course_language}}" href="{% route course, id: course.id %}">
|
||||
<div class="homepage-card">
|
||||
<img class="homepage-card-image" src="{{ course.image_url }}" alt="Learn Pipedrive - {{ course.name }}">
|
||||
<img class="homepage-card-image" src="{{ course.image_url }}" alt="{{ course.name }}">
|
||||
<div class="homepage-card-body-wrapper">
|
||||
{% unless course.ribbon == "VIDEO" %}
|
||||
<div class="homepage-card-activities body-s">
|
||||
{{ activities_count }}
|
||||
{% if activities_count == 1 %}
|
||||
<span class="lang-en">activity</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-en">lesson</span>
|
||||
<span class="lang-de">Lektion</span>
|
||||
<span class="lang-es">lección</span>
|
||||
<span class="lang-fr">leçon</span>
|
||||
<span class="lang-br">lição</span>
|
||||
{% else %}
|
||||
<span class="lang-en">activities</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-en">lessons</span>
|
||||
<span class="lang-de">Lektionen</span>
|
||||
<span class="lang-es">lecciones</span>
|
||||
<span class="lang-fr">leçons</span>
|
||||
<span class="lang-br">lições</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endunless %}
|
||||
@ -35,23 +35,23 @@
|
||||
{% if course.ribbon != "VIDEO" %}
|
||||
{% if course.started? %}
|
||||
<span class="lang-en">Continue</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Weiter</span>
|
||||
<span class="lang-es">Continúe en</span>
|
||||
<span class="lang-fr">Continuer</span>
|
||||
<span class="lang-br">Continuar</span>
|
||||
{% else %}
|
||||
<span class="lang-en">Start</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Start</span>
|
||||
<span class="lang-es">Inicio</span>
|
||||
<span class="lang-fr">Commencer</span>
|
||||
<span class="lang-br">Início</span>
|
||||
{% endif %}
|
||||
{% else %}
|
||||
<span class="lang-en">Watch</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-en">Watch video</span>
|
||||
<span class="lang-de">Video ansehen</span>
|
||||
<span class="lang-es">Ver el vídeo</span>
|
||||
<span class="lang-fr">Regarder la vidéo</span>
|
||||
<span class="lang-br">Assista ao vídeo</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
@ -64,10 +64,10 @@
|
||||
{% endunless %}
|
||||
<div class="homepage-card-time body-s">
|
||||
<span class="lang-en">Total length</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>: {{ course.properties.course_time }}
|
||||
<span class="lang-de">Gesamtlänge</span>
|
||||
<span class="lang-es">Longitud total</span>
|
||||
<span class="lang-fr">Durée totale</span>
|
||||
<span class="lang-br">Duração total</span>: {{ course.properties.course_time }}
|
||||
</div>
|
||||
</div>
|
||||
{% unless course.ribbon == "VIDEO" %}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<div class="course-card col-xs-12 col-sm-6 col-lg-4">
|
||||
<a class="course-card-wrapper" href="{{ card_button_link }}">
|
||||
<img class="course-card-image" src="{{ card_image }}" alt="{{ card_alt_text }}">
|
||||
<img class="course-card-image" style="width: 100px; height: 100px;" src="{{ card_image }}" alt="{{ card_alt_text }}">
|
||||
<div class="course-card-content">
|
||||
<h5 class="course-card-title">
|
||||
{{ card_title }}
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
{% capture course_path %}{% route course, id: course.id %}{% endcapture %}
|
||||
{% assign scaled_image_url = "" | append: course.image_url | replace: "resize=width:819,height:503", "resize=width:912,height:503" %}
|
||||
|
||||
<div class="course-card video-card col-xs-12 col-sm-6 col-lg-4">
|
||||
<div class="course-card video-card col-xs-12 col-sm-6 col-lg-4" language="{{course.properties.course_language}}">
|
||||
<a class="course-card-wrapper" href="{{ course_path }}">
|
||||
{% if course.properties.course_time != 'NULL' %}
|
||||
<div class="video-card-ribbon">
|
||||
@ -17,7 +17,7 @@
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
<img class="course-card-image" src="{{ scaled_image_url }}" alt="Learn Pipedrive - {{ course.name }}">
|
||||
<img class="course-card-image" src="{{ scaled_image_url }}" alt="{{ course.name }}">
|
||||
<div class="course-card-content">
|
||||
<h5 class="course-card-title">
|
||||
{{ course.name }}
|
||||
@ -30,10 +30,10 @@
|
||||
<div class="course-card-button button-wrapper">
|
||||
<div class="button-2 button-medium">
|
||||
<span class="lang-en">Watch video</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Video ansehen</span>
|
||||
<span class="lang-es">Ver el vídeo</span>
|
||||
<span class="lang-fr">Regarder la vidéo</span>
|
||||
<span class="lang-br">Assista ao vídeo</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -18,23 +18,51 @@
|
||||
{% assign category_uuid = categories_uuids | slice: y %}
|
||||
<section class="courses-section" item-categories="{{ category_uuid }}">
|
||||
<div class="courses-section-header">
|
||||
<h3 class="courses-title strong">
|
||||
{{ categories_names | slice: y }}
|
||||
<h3 class="courses-title strong">
|
||||
{% assign category_name = categories_names | slice: y %}
|
||||
|
||||
{% if category_name contains 'Pipedrive courses' %}
|
||||
<span class="lang-en">Pipedrive courses</span>
|
||||
<span class="lang-de">Pipedrive Kurse</span>
|
||||
<span class="lang-es">Cursos de Pipedrive</span>
|
||||
<span class="lang-fr">Cours de Pipedrive</span>
|
||||
<span class="lang-br">Cursos de Pipedrive</span>
|
||||
{% elsif category_name contains 'Sales courses' %}
|
||||
<span class="lang-en">Sales courses</span>
|
||||
<span class="lang-de">Vertriebskurse</span>
|
||||
<span class="lang-es">Cursos de Ventas</span>
|
||||
<span class="lang-fr">Cours de Vente</span>
|
||||
<span class="lang-br">Cursos de Vendas</span>
|
||||
{% elsif category_name contains 'Marketing courses' %}
|
||||
<span class="lang-en">Marketing courses</span>
|
||||
<span class="lang-de">Marketingkurse</span>
|
||||
<span class="lang-es">Cursos de Marketing</span>
|
||||
<span class="lang-fr">Cours de Marketing</span>
|
||||
<span class="lang-br">Cursos de Marketing</span>
|
||||
{% elsif category_name contains 'Spanish' %}
|
||||
<span class="lang-en">Spanish</span>
|
||||
<span class="lang-de">Spanisch</span>
|
||||
<span class="lang-es">Español</span>
|
||||
<span class="lang-fr">Espagnol</span>
|
||||
<span class="lang-br">Espanhol</span>
|
||||
{% else %}
|
||||
{{ category_name }}
|
||||
{% endif %}
|
||||
</h3>
|
||||
<div class="courses-section-button" onclick="this.parentNode.parentNode.classList.toggle('courses-section-expanded')">
|
||||
<span class="courses-section-button-hide">
|
||||
<span class="lang-en">Show less</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Weniger anzeigen</span>
|
||||
<span class="lang-es">Mostrar menos</span>
|
||||
<span class="lang-fr">Montrer moins</span>
|
||||
<span class="lang-br">Mostrar menos</span>
|
||||
</span>
|
||||
<span class="courses-section-button-expand">
|
||||
<span class="lang-en">View all</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span> <i class="fas fa-arrow-right"></i>
|
||||
<span class="lang-de">Alle anzeigen</span>
|
||||
<span class="lang-es">Ver todos</span>
|
||||
<span class="lang-fr">Tout afficher</span>
|
||||
<span class="lang-br">Ver tudo</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
@ -83,10 +111,10 @@
|
||||
<section class="courses-section courses-section-featured" item-categories="">
|
||||
<h3 class="courses-title strong">
|
||||
<span class="lang-en">Featured courses</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Ausgewählte Kurse</span>
|
||||
<span class="lang-es">Cursos destacados</span>
|
||||
<span class="lang-fr">Cours à l'affiche</span>
|
||||
<span class="lang-br">Cursos em destaque</span>
|
||||
</h3>
|
||||
{% assign any_course = false %}
|
||||
<div class="courses-list row">
|
||||
|
||||
@ -11,18 +11,18 @@
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">What is a sales training program?</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Was ist ein Vertriebstraining?</span>
|
||||
<span class="lang-es">¿Qué es un programa de capacitación en ventas?</span>
|
||||
<span class="lang-fr">Qu’est-ce qu’un programme de formation commerciale ?</span>
|
||||
<span class="lang-br">O que é um programa de formação em vendas?</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">A sales training program is a course – be it virtual, on-site or on-demand – designed to equip your salespeople with the skills to maximize revenue. Online sales training is convenient and has several advantages over in-person training. For example, it allows sales professionals to complete an e-learning program at their own pace.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Ein Vertriebstraining ist ein Lehrgang, der als E-Learning-Kurs oder vor Ort stattfinden kann und darauf ausgelegt ist, dass Ihre Vertriebsmitarbeiter die Fähigkeiten erlangen, mit denen sie Umsatz maximieren können. Virtuelles Online-Training ist dabei nicht nur praktisch, sondern hat auch weitere Vorteile gegenüber Kursen vor Ort, so ermöglicht es den Kursteilnehmern z. B. ein E-Learning-Programm im eigenen Tempo zu durchlaufen.</span>
|
||||
<span class="lang-es">Un programa de capacitación en ventas es un curso – ya sea virtual, en el sitio u on-demand – diseñado para equipar a tus vendedores con las habilidades para maximizar los ingresos. La capacitación en ventas en línea es conveniente y tiene varias ventajas sobre la capacitación en persona. Por ejemplo, permite a los profesionales de ventas completar un programa de aprendizaje electrónico a su propio ritmo.</span>
|
||||
<span class="lang-fr">Un programme de formation commerciale est un ensemble de cours - en virtuel, en présentiel ou à la demande - permettant aux commerciaux d’optimiser leurs pratiques et de gagner en efficacité . Les formations commerciales en ligne offrent de nombreux avantages par rapport aux cours en présentiel. Par exemple, elles permettent à vos vendeurs de suivre des cours à leur rythme.</span>
|
||||
<span class="lang-br">Um programa de formação em vendas é um curso - seja ele virtual, no local ou a pedido - concebido para equipar os seus vendedores com as competências necessárias para maximizar as receitas. A formação em vendas on-line é conveniente e tem várias vantagens em relação à formação presencial. Por exemplo, permite que os profissionais de vendas completem um programa de formação em linha ao seu próprio ritmo.</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -34,18 +34,18 @@
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">What is a sales academy?</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Was ist eine Sales Academy?</span>
|
||||
<span class="lang-es">¿Qué es una academia de ventas?</span>
|
||||
<span class="lang-fr">Qu’est-ce qu’une académie de vente ?</span>
|
||||
<span class="lang-br">O que é uma academia de vendas?</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">A sales academy is a space featuring a range of courses and videos for training salespeople. These usually include tutorials to help foster stronger customer relationships, increase revenue and strengthen sales skills. The courses can be multi-part instructor-led training, self-study or more concise lessons that focus on particular aspects of the sales process.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">In einer Sales Academy finden Sie eine weite Bandbreite von Kursen und Videos für die Fortbildung Ihres Vertriebsteams und Ihrer Vertriebsmanager. Hierzu gehören in der Regel Tutorials, die erklären, wie man stärkere Kundenbeziehungen fördert, den Umsatz erhöht und Vertriebsfähigkeiten stärkt. Dies können mehrteilige Kurse oder komprimierte Einzeleinheiten zu einem bestimmten Thema des Vertriebsprozesses sein, die von einer Fachkraft geleitet werden oder im Selbststudium stattfinden.</span>
|
||||
<span class="lang-es">Una academia de ventas es un espacio que ofrece una variedad de cursos y videos para capacitar a los vendedores. Por lo general, incluyen tutoriales para ayudar a fomentar relaciones más sólidas con los clientes, aumentar los ingresos y fortalecer las habilidades de ventas. Los cursos pueden ser de capacitación en varias partes con instructor, de autoaprendizaje o lecciones más concisas que se enfocan en aspectos particulares del proceso de ventas.</span>
|
||||
<span class="lang-fr">Une académie de vente est un espace rassemblant des cours et des vidéos d’apprentissage destinés aux forces de vente. Cela inclut des tutoriels pour apprendre à renforcer la relation client, développer le chiffre d’affaires et parfaire vos compétences commerciales. Vous trouverez aussi bien des cours en plusieurs parties dispensés par des spécialistes, que des modules à compléter soi-même, en passant par des leçons rapides portant sur des aspects particuliers du processus de vente.</span>
|
||||
<span class="lang-br">Uma academia de vendas é um espaço com uma variedade de cursos e vídeos para a formação de vendedores. Estes incluem geralmente tutoriais para ajudar a fomentar relações mais fortes com os clientes, aumentar as receitas e reforçar as capacidades de vendas. Os cursos podem ser de formação de instrutores em várias partes, auto-aprendizagem ou aulas mais concisas que se concentram em aspectos particulares do processo de vendas.</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -57,65 +57,65 @@
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">What is the Pipedrive Academy?</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Was ist die Pipedrive Academy?</span>
|
||||
<span class="lang-es">¿Qué es la Academia Pipedrive?</span>
|
||||
<span class="lang-fr">À quoi sert l’Académie de Pipedrive ?</span>
|
||||
<span class="lang-br">O que é a Academia Pipedrive?</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">The Pipedrive Academy is where you’ll find courses, videos and tutorials to help sales professionals level up their sales skills. It features guides that’ll teach you how to get started with Pipedrive’s CRM, how to become an email marketing pro, how to build a successful sales pipeline and much more.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">In der Pipedrive Academy finden Sie Kurse, Videos und Tutorials, die Vertriebsmitarbeitern dabei helfen, ihre Vertriebsfähigkeiten zu verbessern. Dazu gehören Leitfäden für den Start mit Pipedrives CRM, E-Mail-Marketing, wie man eine erfolgreiche Sales-Pipeline aufbaut und vieles mehr.</span>
|
||||
<span class="lang-es">La Academia Pipedrive es donde encontrarás cursos, videos y tutoriales para ayudar a los profesionales de ventas a mejorar sus habilidades de ventas. Cuenta con guías que te enseñarán cómo comenzar con el CRM de Pipedrive, cómo convertirte en un profesional del marketing por correo electrónico, cómo crear un embudo de ventas exitoso y mucho más.</span>
|
||||
<span class="lang-fr">L'Académie Pipedrive vous donne accès à des cours, des vidéos et des tutoriels conçus pour aider les professionnels de la vente à améliorer leurs compétences commerciales. Vous y trouverez des guides pour faire vos premiers pas avec le CRM Pipedrive, maîtriser le marketing par e-mail, construire un pipeline de ventes à toute épreuve, et bien plus encore.</span>
|
||||
<span class="lang-br">A Academia Pipedrive é onde se encontram cursos, vídeos e tutoriais para ajudar os profissionais de vendas a nivelar as suas capacidades de vendas. Inclui guias que lhe ensinarão como começar com o CRM da Pipedrive, como tornar-se um profissional de marketing por e-mail, como construir um canal de vendas bem sucedido e muito mais.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="faq-element">
|
||||
<div class="faq-question" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question-icon">
|
||||
<i class="far fa-angle-down faq-icon-closed"></i>
|
||||
<i class="far fa-angle-up faq-icon-opened"></i>
|
||||
<div class="faq-element">
|
||||
<div class="faq-question" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question-icon">
|
||||
<i class="far fa-angle-down faq-icon-closed"></i>
|
||||
<i class="far fa-angle-up faq-icon-opened"></i>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">What company has the best sales training programs?</span>
|
||||
<span class="lang-de">Welches Unternehmen hat das beste Vertriebstraining?</span>
|
||||
<span class="lang-es">¿Qué empresa tiene los mejores programas de capacitación en ventas?</span>
|
||||
<span class="lang-fr">Quelle entreprise fournit les meilleurs programmes de formation commerciale ?</span>
|
||||
<span class="lang-br">Que empresa tem os melhores programas de formação em vendas?</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">What company has the best sales training programs?</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">The best sales training programs are those that suit your sales team the most. There are many things that contribute to a successful sales strategy. These include building strong customer relationships, making sure to follow up on time, running smart email marketing campaigns and maintaining a healthy sales pipeline. Pipedrive’s Academy doesn’t only guide users on its software – it helps salespeople acquire sales skills that can be applied to whichever tool they use.</span>
|
||||
<span class="lang-de">Die besten Fortbildungsprogramme sind die, die ideal zu Ihrem Vertriebsteam passen. Es gibt viele Dinge, die zu einer erfolgreichen Vertriebsstrategie beitragen. Dazu gehören der Aufbau starker Kundenbeziehungen, das Nachfassen im richtigen Moment, durchdachte E-Mail-Marketing-Kampagnen sowie eine gesunde Sales-Pipeline. Die Pipedrive Academy unterstützt Nutzer nicht allein bei der Verwendung der Software, es hilft Vertrieblern auch dabei, Vertriebsfähigkeiten zu erwerben, die für jedes andere Tool Anwendung finden können.</span>
|
||||
<span class="lang-es">Los mejores programas de capacitación en ventas son los que mejor se adaptan a tu equipo de ventas. Hay muchas cosas que contribuyen a una estrategia de ventas exitosa. Estos incluyen construir relaciones sólidas con los clientes, asegurarse de dar seguimiento a tiempo, ejecutar campañas de marketing por correo electrónico inteligentes y mantener un embudo de ventas saludable. La Academia Pipedrive no solo guía a los usuarios a navegar por su software, sino que también ayuda a los vendedores a adquirir habilidades de ventas que se pueden aplicar a cualquier herramienta que utilicen.</span>
|
||||
<span class="lang-fr">Les meilleurs programmes de formation commerciale sont avant tout ceux qui correspondent aux besoins de votre équipe de vente. Les éléments concourant au succès de votre stratégie commerciale sont multiples : qualité de votre relation client, timing des relances, pertinence de vos campagnes emailing, santé du pipeline commercial. L’Académie de Pipedrive ne se contente pas de guider les utilisateurs à travers le logiciel : elle permet aux commerciaux d’acquérir de nouvelles compétences qu’ils pourront mettre à profit, quels que soient les outils qu’ils utilisent.</span>
|
||||
<span class="lang-br">Os melhores programas de formação de vendas são os que mais se adequam à sua equipa de vendas. Há muitas coisas que contribuem para uma estratégia de vendas bem sucedida. Estes incluem a construção de relações fortes com os clientes, assegurar o acompanhamento a tempo, executar campanhas inteligentes de marketing por e-mail e manter um canal de vendas saudável. A Pipedrive's Academy não orienta apenas os utilizadores no seu software - ajuda os vendedores a adquirirem competências de vendas que podem ser aplicadas a qualquer ferramenta que utilizem.</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">The best sales training programs are those that suit your sales team the most. There are many things that contribute to a successful sales strategy. These include building strong customer relationships, making sure to follow up on time, running smart email marketing campaigns and maintaining a healthy sales pipeline. Pipedrive’s Academy doesn’t only guide users on its software – it helps salespeople acquire sales skills that can be applied to whichever tool they use.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="faq-element">
|
||||
<div class="faq-question" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question-icon">
|
||||
<i class="far fa-angle-down faq-icon-closed"></i>
|
||||
<i class="far fa-angle-up faq-icon-opened"></i>
|
||||
|
||||
<div class="faq-element">
|
||||
<div class="faq-question" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question-icon">
|
||||
<i class="far fa-angle-down faq-icon-closed"></i>
|
||||
<i class="far fa-angle-up faq-icon-opened"></i>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">How do I build a sales training program?</span>
|
||||
<span class="lang-de">Wie baue ich Weiterbildungen im Vertrieb auf?</span>
|
||||
<span class="lang-es">¿Cómo construyo un programa de capacitación en ventas?</span>
|
||||
<span class="lang-fr">Comment construire un programme d’apprentissage CRM ?</span>
|
||||
<span class="lang-br">Como é que construo um programa de formação de vendas?</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">How do I build a sales training program?</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">There are endless resources available when it comes to training your sales team. Sure, you could trawl the internet looking for the right materials, or you could use one of the guides in the Pipedrive Academy. These courses are tailor-made to help you to achieve sales success, understand email marketing and build a successful sales pipeline.</span>
|
||||
<span class="lang-de">Die Zahl der Weiterbildungsangebote für Vertriebsteams ist schier endlos verfügbar. Natürlich können Sie das Internet auf der Suche nach den richtigen Ressourcen durchstöbern oder Sie nutzen einen der Leitfäden in der Pipedrive Academy. Diese Kurse sind darauf zugeschnitten, Ihnen zu größtmöglichem Vertriebserfolg zu verhelfen, E-Mail-Markting zu verstehen und eine gesunde Sales-Pipeline aufzubauen.</span>
|
||||
<span class="lang-es">Hay innumerables recursos disponibles cuando se trata de capacitar a tu equipo de ventas. Claro, podrías buscar en Internet los materiales correctos o podrías usar una de las guías de la Academia Pipedrive. Estos cursos están hechos a la medida para ayudarte a lograr el éxito en las ventas, comprender el marketing por correo electrónico y crear un embudo de ventas exitoso.</span>
|
||||
<span class="lang-fr">Ce ne sont pas les ressources qui manquent pour entraîner votre équipe de vente. Vous pouvez faire vos propres recherches sur Internet ou consulter les guides de l’Académie de Pipedrive. Spécialement conçus pour vous aider à enclencher votre réussite commerciale, nos cours vous apprendront à maîtriser le marketing par e-mail et à configurer efficacement votre pipeline de vente. </span>
|
||||
<span class="lang-br">Há inúmeros recursos disponíveis quando se trata de treinar a sua equipa de vendas. Claro, pode navegar na Internet à procura dos materiais certos, ou pode utilizar um dos guias da Academia Pipedrive. Estes cursos são feitos à medida para o ajudar a alcançar o sucesso de vendas, compreender o marketing por correio electrónico e construir um canal de vendas bem sucedido.</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">There are endless resources available when it comes to training your sales team. Sure, you could trawl the internet looking for the right materials, or you could use one of the guides in the Pipedrive Academy. These courses are tailor-made to help you to achieve sales success, understand email marketing and build a successful sales pipeline. </span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -2,15 +2,43 @@
|
||||
<div class="courses-filter">
|
||||
<div class="courses-filter-item courses-filter-item-active body-s strong" onclick="filterItems(this)" category-uuid="ALL">
|
||||
<span class="lang-en">All topics</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Alle Themen</span>
|
||||
<span class="lang-es">Todos los temas</span>
|
||||
<span class="lang-fr">Tous les thèmes</span>
|
||||
<span class="lang-br">Todos os tópicos</span>
|
||||
</div>
|
||||
{% for x in (1..uuids.size) %}
|
||||
{% assign y = x | minus: 1 %}
|
||||
<div class="courses-filter-item body-s strong" onclick="filterItems(this)" category-uuid="{{ uuids | slice: y }}">
|
||||
{{ names | slice: y }}
|
||||
{% assign category_name = names | slice: y %}
|
||||
{% if category_name contains 'Pipedrive courses' %}
|
||||
<span class="lang-en">Pipedrive courses</span>
|
||||
<span class="lang-de">Pipedrive Kurse</span>
|
||||
<span class="lang-es">Cursos de Pipedrive</span>
|
||||
<span class="lang-fr">Cours de Pipedrive</span>
|
||||
<span class="lang-br">Cursos de Pipedrive</span>
|
||||
{% elsif category_name contains 'Sales courses' %}
|
||||
<span class="lang-en">Sales courses</span>
|
||||
<span class="lang-de">Vertriebskurse</span>
|
||||
<span class="lang-es">Cursos de Ventas</span>
|
||||
<span class="lang-fr">Cours de Vente</span>
|
||||
<span class="lang-br">Cursos de Vendas</span>
|
||||
{% elsif category_name contains 'Marketing courses' %}
|
||||
<span class="lang-en">Marketing courses</span>
|
||||
<span class="lang-de">Marketingkurse</span>
|
||||
<span class="lang-es">Cursos de Marketing</span>
|
||||
<span class="lang-fr">Cours de Marketing</span>
|
||||
<span class="lang-br">Cursos de Marketing</span>
|
||||
{% elsif category_name contains 'Spanish' %}
|
||||
<span class="lang-en">Spanish</span>
|
||||
<span class="lang-de">Spanisch</span>
|
||||
<span class="lang-es">Español</span>
|
||||
<span class="lang-fr">Espagnol</span>
|
||||
<span class="lang-br">Espanhol</span>
|
||||
{% else %}
|
||||
{{ category_name }}
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
@ -2,41 +2,40 @@
|
||||
<div class="page-info width-limit">
|
||||
<div class="page-info-section">
|
||||
<div class="page-info-section-image-wrapper">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/page_info_catalog_1.png" alt="Woman researching on the Learn Pipedrive Academy">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/page_info_catalog_1.png">
|
||||
</div>
|
||||
<div class="page-info-section-text">
|
||||
<h3 class="page-info-section-title">
|
||||
<span class="lang-en">What you can find in the Pipedrive Academy:</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Was Sie in der Pipedrive Academy erwartet:</span>
|
||||
<span class="lang-es">Qué puedes encontrar en la Academia de Pipedrive:</span>
|
||||
<span class="lang-fr">Que trouverez-vous dans l’Académie de Pipedrive ?</span>
|
||||
<span class="lang-br">O que você encontra na Academia do Pipedrive:</span>
|
||||
</h3>
|
||||
<div class="page-info-section-description">
|
||||
<span class="lang-en">Pipedrive’s Academy is where you’ll find self-paced courses – including online training videos – to help sales professionals and marketers on your team learn and improve their marketing and sales skills. Courses in the academy range from quick, practical lessons that address specific issues your salespeople might encounter along the sales process to longer, multi-part e-learning tutorials that break down much larger topics – such as an introduction to email marketing – into smaller, bite-sized chunks – like <a href="https://www.pipedrive.com/en/academy/courses/organize-your-sales-data">how to organize sales data</a>.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">In Pipedrives Academy finden Sie unsere Kurse, die sich ganz auf das individuelle Lerntempo anpassen lassen, damit Mitarbeiter in Vertrieb und Marketing Fähigkeiten in den Bereichen Vertrieb und Marketing erlangen und verbessern. Die Kurse in der Academy reichen dabei von kurzen, praktischen Einheiten, die spezifische Themen angehen bis hin zu mehrteiligen E-Learning-Tutorials, die umfassendere Themen, wie z. B. eine Einführung in das E-Mail-Marketing, in kleinere Teile herunterbrechen, wie etwa für die <a href="https://www.pipedrive.com/en/academy/courses/organize-your-sales-data">Organisation von Vertriebsdaten</a>.</span>
|
||||
<span class="lang-es">En la Academia Pipedrive encontrarás cursos a tu propio ritmo – incluidos videos de capacitación en línea – para ayudar a los profesionales de ventas y especialistas en marketing de tu equipo a aprender y mejorar sus habilidades de marketing y ventas. Los cursos de la academia van desde lecciones rápidas y prácticas que abordan problemas específicos que tus vendedores pueden encontrar a lo largo del proceso de ventas, hasta tutoriales de aprendizaje electrónico más largos y de varias partes que dividen temas mucho más amplios, como una introducción al marketing por correo electrónico, en temas más pequeños, fragmentos reducidos, como, por ejemplo, <a href="https://www.pipedrive.com/en/academy/courses/organize-your-sales-data">cómo organizar los datos de ventas</a>.</span>
|
||||
<span class="lang-fr">L’Académie de Pipedrive est un espace où les membres de votre équipe pourront suivre à leur rythme des modules d’apprentissage - y compris des vidéos de formation en ligne - pour acquérir de nouvelles compétences en vente et en marketing. Les cours de l'Académie comportent aussi bien des leçons rapides et pratiques abordant les problèmes spécifiques que vos commerciaux peuvent rencontrer au cours du processus de vente, que des tutoriels d'apprentissage en ligne approfondis et en plusieurs parties, décomposant des sujets beaucoup plus vastes - « Introduction au marketing par e-mail » par exemple - en petites unités - par exemple : <a href="https://www.pipedrive.com/en/academy/courses/organize-your-sales-data">« Comment organiser vos données commerciales »</a></span>
|
||||
<span class="lang-br">A Academia do Pipedrive é onde você vai encontrar cursos – incluindo vídeos de treinamento – para ajudar profissionais de vendas e de marketing em sua equipe a melhorar suas habilidades. Os cursos da academia variam entre lições rápidas e práticas que tratam de questões específicas que podem ser encontradas em processos de vendas e tutoriais longos, divididos em partes sobre tópicos mais abrangentes – como a introdução ao e-mail marketing – e em tópicos mais específicos – por exemplo, <a href="https://www.pipedrive.com/en/academy/courses/organize-your-sales-data">como organizar seus dados de vendas</a> como organizar seus dados de vendas.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-info-section">
|
||||
<div class="page-info-section-image-wrapper">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/page_info_catalog_2.png" alt="Learn Pipedrive academy sales training benefits ">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/page_info_catalog_2.png">
|
||||
</div>
|
||||
<div class="page-info-section-text">
|
||||
<h3 class="page-info-section-title">
|
||||
<span class="lang-en">The benefits of sales training programs:</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Die Vorteile von Weiterbildungen im Vertrieb:</span>
|
||||
<span class="lang-es">Las ventajas de los programas de capacitación en ventas:</span>
|
||||
<span class="lang-fr">Les avantages d’un programme de formation commerciale</span>
|
||||
<span class="lang-br">Os benefícios de programas de treinamento em vendas:</span>
|
||||
</h3>
|
||||
<div class="page-info-section-description">
|
||||
<span class="lang-en">
|
||||
The benefits of sales training programs:<br>
|
||||
Without proper training, a sales team can struggle to close deals and miss potential revenue. The wrong sales strategy makes it difficult to yield results and sales professionals might pursue bad leads or waste time on unproductive tasks.<br>
|
||||
Sales training programs help sales teams hone in on their targets in various ways. Among other things, they:<br>
|
||||
<ul>
|
||||
@ -45,10 +44,42 @@
|
||||
<li>Motivate your company’s sales force through consistent nurturing, leading to greater employee retention, morale and productivity.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">
|
||||
Ohne vernünftiges Vertriebstraining wird ein Vertriebsteam Schwierigkeiten haben, Deals abzuschließen und potenzielle Umsätze werden verloren gehen. Die falsche Vertriebsstrategie erschwert das Erreichen von Ergebnissen und Ihre Mitarbeiter verfolgen möglicherweise schlechte Leads oder verschwenden Zeit mit unproduktiven Aufgaben.<br>
|
||||
Mit Sales-Training-Programmen versteht Ihr Vertriebsteam, wie es sich auf verschiedene Weisen seinen Zielen nähern kann. In den Vertriebsweiterbildungen lernen sie u. a.:<br>
|
||||
<ul>
|
||||
<li>Vertriebstechniken, mit denen das Team neue Zielgruppen erreicht und Deals abschließt</li>
|
||||
<li>Wie Unternehmen die Kommunikation mit Interessenten verbessern und personalisieren können. Persönlichere, weniger transaktionale Vertriebsgespräche und solide Kundenbeziehungen erhöhen die Wahrscheinlichkeit erneuter Einkäufe und verbessern die Kundenbindung.</li>
|
||||
<li>Motivation des Vertriebsteams, was zu stärkere Mitarbeiterbindung, besserer Moral und gesteigerter Produktivität führt.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
Sin la capacitación adecuada, un equipo de ventas puede tener dificultades para cerrar tratos y perder ingresos potenciales. La estrategia de ventas incorrecta dificulta la obtención de resultados y los profesionales de ventas pueden buscar malos prospectos o perder el tiempo en tareas improductivas.<br>
|
||||
Los programas de capacitación en ventas ayudan a los equipos de ventas a perfeccionar sus objetivos de varias maneras. Entre otras cosas, los programas:<br>
|
||||
<ul>
|
||||
<li>Empoderan a los representantes de ventas para que adquieran las mejores técnicas de ventas que pueden usar para interactuar con nuevos grupos objetivo y cerrar tratos.</li>
|
||||
<li>Permiten que las empresas mejoren y personalicen su comunicación con los clientes potenciales. Es probable que llevar a cabo conversaciones de ventas y relaciones con los clientes más cálidas y menos transaccionales resulte en negocios repetidos y mejores índices de retención de clientes.</li>
|
||||
<li>Motivan al equipo de ventas de tu empresa a través de una nutrición constante, lo que lleva a una mayor retención, moral y productividad de los empleados.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
Sans formation adéquate, votre équipe commerciale aura des difficultés à conclure des ventes et à générer du chiffre d’affaires. Une stratégie de vente adaptée est indispensable pour obtenir des résultats et éviter que votre force de vente ne démarche les mauvais prospects ou perde son temps en activités improductives.<br>
|
||||
Nos programmes de formation à la vente sont conçus pour aider les équipes commerciales à affiner leurs objectifs de multiples façons. Ils vous permettront notamment de :<br>
|
||||
<ul>
|
||||
<li>Fournir à vos commerciaux les meilleures techniques de vente pour démarcher de nouveaux groupes cibles et conclure davantage d’affaires</li>
|
||||
<li>Permettre aux entreprises d’améliorer et de personnaliser la manière dont elles communiquent avec les prospects : en apportant un supplément d’âme et de chaleur à vos échanges commerciaux, vous avez plus de chances de générer des ventes répétées et de booster vos taux de rétention client.</li>
|
||||
<li>Motiver votre force de vente en l’aidant continuellement à développer ses capacités, pour favoriser le moral, la productivité et la rétention des employés.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
Sem treinamento adequado, uma equipe de vendas pode ter dificuldades para fechar negócios e acabar perdendo receita. A estratégia de vendas errada dificulta a geração de resultados e profissionais de vendas acabam focando em leads ruins ou perdendo tempo em tarefas que não são produtivas.<br>
|
||||
Os programas de treinamento de vendas ajudam as equipes a atingir suas metas de várias maneiras. Entre outras coisas, esses programas ajudam a:<br>
|
||||
<ul>
|
||||
<li>Capacitar representantes de vendas para melhorar técnicas de vendas que podem ser usadas para criar engajamento com novos grupos e fechar negócios.</li>
|
||||
<li>Permitir que as empresas melhorem e personalizem sua comunicação com clientes em potencial. Ao conduzir conversas e relacionamentos com clientes mais interessados provavelmente resultará em negócios contínuos e melhores taxas de retenção de clientes.</li>
|
||||
<li>Motivar as equipes de vendas da sua empresa por meio de nutrição consistente, levando a uma maior retenção, moral e produtividade dos funcionários.</li>
|
||||
</ul>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
data-document-language="true"
|
||||
type="text/javascript"
|
||||
charset="UTF-8"
|
||||
data-domain-script="c938af5b-8612-421f-8d15-740c329a09bc{% if current_school.id == '53f0e3ae-cdf4-494e-bf8b-e20534d6d722' %}-test{% endif %}"></script>
|
||||
data-domain-script="c938af5b-8612-421f-8d15-740c329a09bc{% if current_school.properties.sandbox %}-test{% endif %}"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
!(function () {
|
||||
@ -355,7 +355,7 @@
|
||||
</style>
|
||||
{% endcomment %}
|
||||
|
||||
{% if current_person.signed_in? %}
|
||||
{% if current_person.signed_in? and current_school.properties.sandbox == false %}
|
||||
<script>
|
||||
let permissionCookie = ''
|
||||
function validateCookieProperty() {
|
||||
|
||||
@ -11,16 +11,31 @@
|
||||
{% include "course_outline" %}
|
||||
{% include "catalog_faq" %}
|
||||
{% include "course_recommended_courses" %}
|
||||
|
||||
|
||||
{% unless current_person.signed_in? %}
|
||||
{% assign banner_title = "How to get the most out of Pipedrive?" %}
|
||||
{% assign banner_text = "Welcome to Pipedrive Academy! Pipedrive Academy features CRM training videos and tutorials to help you level up your CRM and sales skills, from quick CRM courses to in-depth tutorials on specific features." %}
|
||||
{% assign banner_button_text = "Start today" %}
|
||||
{% assign banner_title = "<span class='lang-en'>How to get most out of Pipedrive?</span>
|
||||
<span class='lang-de'>Wie mache ich das meiste aus Pipedrive?</span>
|
||||
<span class='lang-es'>¿Cómo sacar el máximo provecho de Pipedrive?</span>
|
||||
<span class='lang-fr'>Comment tirer le maximum de Pipedrive ?</span>
|
||||
<span class='lang-br'>Como aproveitar o Pipedrive ao máximo?</span>"
|
||||
%}
|
||||
{% assign banner_text = "<span class='lang-en'>Welcome to Pipedrive Academy! Pipedrive Academy features CRM training videos and tutorials to help you level up your CRM and sales skills, from quick CRM courses to in-depth tutorials on specific features.</span>
|
||||
<span class='lang-de'>Willkommen bei der Pipedrive Academy! In der Pipedrive Academy finden Sie CRM-Schulungsvideos und -Lernprogramme, die Ihnen helfen, Ihre CRM- und Vertriebskenntnisse zu verbessern, von schnellen CRM-Kursen bis hin zu ausführlichen Lernprogrammen zu bestimmten Funktionen.</span>
|
||||
<span class='lang-es'>¡Bienvenido a la Academia Pipedrive! La Academia Pipedrive cuenta con videos y tutoriales de capacitación en CRM para ayudarte a subir de nivel en tus habilidades de CRM y ventas, desde cursos rápidos hasta tutoriales avanzados sobre funciones específicas.</span>
|
||||
<span class='lang-fr'>Bienvenue dans l'Académie de Pipedrive ! L'Académie de Pipedrive propose des vidéos de formation au CRM et des tutoriels pour améliorer vos compétences en vente et en relation client. Vous y trouverez aussi bien des leçons sur la GRC que des tutos approfondis sur des outils spécifiques. </span>
|
||||
<span class='lang-br'>Bem-vindo(a) à Academia do Pipedrive! A Academia do Pipedrive conta com vídeos de treinamento de CRM e tutoriais para ajudar você a melhorar suas habilidades de CRM e vendas. De cursos rápidos de CRM até tutoriais detalhados sobre recursos específicos, temos tudo aqui.</span>"
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Start today</span>
|
||||
<span class="lang-de">Heute starten</span>
|
||||
<span class="lang-es">Empezar hoy mismo</span>
|
||||
<span class="lang-fr">Commencez dès aujourd'hui</span>
|
||||
<span class="lang-br">Comece hoje mesmo</span>'
|
||||
%}
|
||||
{% assign banner_button_link = "#sso-widget" %}
|
||||
{% include "green_banner_text_bg_image" %}
|
||||
{% endunless %}
|
||||
</main>
|
||||
|
||||
|
||||
<script>
|
||||
addEventListener("DOMContentLoaded", () => {
|
||||
document.querySelector('#side-menu-courses')?.classList.add('side-menu-link-active');
|
||||
|
||||
@ -10,11 +10,11 @@
|
||||
<div class="course-banner-content">
|
||||
<div class="course-return">
|
||||
<a href="/app/courses">
|
||||
« <span class="lang-en">Back to all courses</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-en">« Back to all courses</span>
|
||||
<span class="lang-de">« Zurück zu allen Kursen</span>
|
||||
<span class="lang-es">« Volver a todos los cursos</span>
|
||||
<span class="lang-fr">« Retour à l'ensemble des cours</span>
|
||||
<span class="lang-br">« Voltar a todos os cursos</span>
|
||||
</a>
|
||||
</div>
|
||||
<h1 class="course-banner-title">
|
||||
@ -40,10 +40,10 @@
|
||||
</a>
|
||||
<div class="course-copied">
|
||||
<span class="lang-en">Link was copied!</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Link wurde kopiert!</span>
|
||||
<span class="lang-es">Enlace copiado.</span>
|
||||
<span class="lang-fr">Le lien a été copié !</span>
|
||||
<span class="lang-br">O link foi copiado!</span>
|
||||
</div>
|
||||
</div>
|
||||
{% endcomment %}
|
||||
@ -52,18 +52,18 @@
|
||||
{% if course.enrolled? %}
|
||||
<a class="course-banner-button button-large button-1" href="{% route course_viewer, course_id: course.id, learning_path_id: params.learning_path_id %}">
|
||||
<span class="lang-en">Continue</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Weiter</span>
|
||||
<span class="lang-es">Continúe en</span>
|
||||
<span class="lang-fr">Continuer</span>
|
||||
<span class="lang-br">Continuar</span>
|
||||
</a>
|
||||
{% else %}
|
||||
<a class="course-banner-button button-large button-1" href="{% route course_enrollment, code: course.enrollment_code %}">
|
||||
<span class="lang-en">Start your course</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Starten Sie Ihren Kurs</span>
|
||||
<span class="lang-es">Comienza tu curso</span>
|
||||
<span class="lang-fr">Commencez votre cours</span>
|
||||
<span class="lang-br">Comece seu curso</span>
|
||||
</a>
|
||||
{% endif %}
|
||||
{% else %}
|
||||
@ -75,10 +75,10 @@
|
||||
{% endif %}
|
||||
>
|
||||
<span class="lang-en">Register for free courses</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Anmeldung für kostenlose Kurse</span>
|
||||
<span class="lang-es">Inscribirse en cursos gratuitos</span>
|
||||
<span class="lang-fr">S'inscrire à des cours gratuits</span>
|
||||
<span class="lang-br">Cadastre-se para cursos gratuitos</span>
|
||||
</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
<div class="width-limit instructor-card">
|
||||
<h3 class="instructor-card-title">
|
||||
<span class="lang-en">Your host for the course</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Ihr Kursleiter</span>
|
||||
<span class="lang-es">Su anfitrión para el curso</span>
|
||||
<span class="lang-fr">Votre formateur/formatrice</span>
|
||||
<span class="lang-br">Apresentador do curso</span>
|
||||
</h3>
|
||||
<div class="instructor-card-body">
|
||||
<div class="instructor-image-container">
|
||||
|
||||
@ -14,13 +14,17 @@
|
||||
<div class="course-outline">
|
||||
<h2 class="course-outline-title">
|
||||
<span class="lang-en">List of lessons</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Liste der Lektionen</span>
|
||||
<span class="lang-es">Lista de lecciones</span>
|
||||
<span class="lang-fr">Liste des leçons</span>
|
||||
<span class="lang-br">Lista de lições</span>
|
||||
</h2>
|
||||
<div class="course-outline-description">
|
||||
This course will show you how you can get started and how Pipedrive can greatly improve your sales results. What you will learn:
|
||||
{{ course.short_description }} <span class="lang-en">What you will learn:</span>
|
||||
<span class="lang-de">Was Sie lernen werden:</span>
|
||||
<span class="lang-es">Lo que aprenderás:</span>
|
||||
<span class="lang-fr">Ce que vous apprendrez:</span>
|
||||
<span class="lang-br">O que você vai aprender:</span>
|
||||
</div>
|
||||
<div class="sections-list">
|
||||
{% assign section_counter = 0 %}
|
||||
@ -84,7 +88,11 @@
|
||||
href="{% route course_enrollment, code: course.enrollment_code %}"
|
||||
{% endif %}
|
||||
>
|
||||
Unlock now
|
||||
<span class="lang-en">Unlock now</span>
|
||||
<span class="lang-de">Jetzt freischalten</span>
|
||||
<span class="lang-es">Desbloquear ahora</span>
|
||||
<span class="lang-fr">Débloquer maintenant</span>
|
||||
<span class="lang-br">Desbloquear agora</span>
|
||||
</a>
|
||||
</div>
|
||||
{% endunless %}
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
<div class="recommended-courses container width-limit">
|
||||
<h2 class="recommended-courses-title">
|
||||
<span class="lang-en">Courses you may find helpful</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Kurse, die Sie hilfreich finden könnten</span>
|
||||
<span class="lang-es">Cursos que pueden resultarle útiles</span>
|
||||
<span class="lang-fr">Cours qui pourraient vous être utiles</span>
|
||||
<span class="lang-br">Cursos que você pode achar útil</span>
|
||||
</h2>
|
||||
{% assign similar_count = 0 | plus: 0 %}
|
||||
{% assign categories_ids = course.categories | map: "id" %}
|
||||
|
||||
@ -0,0 +1,120 @@
|
||||
<div class="faq width-limit">
|
||||
<h2 class="faq-title">
|
||||
FAQ
|
||||
</h2>
|
||||
<div class="faq-list">
|
||||
<div class="faq-element" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question">
|
||||
<div class="faq-question-icon">
|
||||
<i class="far fa-angle-down faq-icon-closed"></i>
|
||||
<i class="far fa-angle-up faq-icon-opened"></i>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
At lectus urna duis convallis. Lacus sed viverra tellus in hac habitasse platea dictumst. Enim ut tellus elementum sagittis vitae et leo duis ut. Sed enim ut sem viverra aliquet eget. Urna cursus eget nunc scelerisque.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="faq-element" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question">
|
||||
<div class="faq-question-icon">
|
||||
<i class="far fa-angle-down faq-icon-closed"></i>
|
||||
<i class="far fa-angle-up faq-icon-opened"></i>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
Nunc pulvinar sapien et ligula ullamcorper malesuada proin. Odio ut enim blandit volutpat maecenas volutpat blandit aliquam etiam. Odio euismod lacinia at quis. Eget mauris pharetra et ultrices. Justo nec ultrices dui sapien eget mi proin sed libero. Erat velit scelerisque in dictum non consectetur a. Varius vel pharetra vel turpis nunc. Id aliquet risus feugiat in ante metus dictum at. Tincidunt augue interdum velit euismod in pellentesque massa. Habitant morbi tristique senectus et. Commodo viverra maecenas accumsan lacus vel facilisis volutpat est velit. Iaculis urna id volutpat lacus. Nisl nisi scelerisque eu ultrices vitae. A lacus vestibulum sed arcu. Diam sit amet nisl suscipit. Varius quam quisque id diam vel.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="faq-element" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question">
|
||||
<div class="faq-question-icon">
|
||||
<i class="far fa-angle-down faq-icon-closed"></i>
|
||||
<i class="far fa-angle-up faq-icon-opened"></i>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
Libero id faucibus nisl tincidunt eget. Porttitor eget
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
In ante metus dictum at tempor commodo ullamcorper. Aliquet nec ullamcorper sit amet risus nullam eget. Faucibus vitae aliquet nec ullamcorper
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.faq {
|
||||
padding-top: 60px;
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
.faq-title {
|
||||
padding-bottom: 40px;
|
||||
border-bottom: 1px solid #E4E6E9;
|
||||
}
|
||||
.faq-element {
|
||||
border-bottom: 1px solid #E4E6E9;
|
||||
padding: 20px 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
.faq-question {
|
||||
display: flex;
|
||||
}
|
||||
.faq-question-icon {
|
||||
cursor: pointer;
|
||||
background: #F4F5F6;
|
||||
border-radius: 50%;
|
||||
margin-right: 20px;
|
||||
position: relative;
|
||||
display: flex;
|
||||
height: fit-content;
|
||||
align-self: center;
|
||||
}
|
||||
.faq-question-icon > i {
|
||||
height: 36px;
|
||||
width: 36px;
|
||||
}
|
||||
.faq-question-icon > i::before {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
.faq-icon-opened {
|
||||
display: none;
|
||||
}
|
||||
.faq-answer {
|
||||
display: none;
|
||||
margin-left: 56px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.faq-element.open .faq-icon-opened {
|
||||
display: block;
|
||||
}
|
||||
.faq-element.open .faq-icon-closed {
|
||||
display: none;
|
||||
}
|
||||
.faq-element.open .faq-answer {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 768px) {
|
||||
.faq {
|
||||
padding-top: 80px;
|
||||
padding-bottom: 80px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
function toggleFAQ(element) {
|
||||
element.classList.toggle('open')
|
||||
}
|
||||
</script>
|
||||
@ -194,18 +194,30 @@
|
||||
|
|
||||
</p>
|
||||
<a class="footer-bottom-link" href="https://www.pipedrive.com/en/terms-of-service">
|
||||
Terms of service
|
||||
<span class="lang-en">Terms of service</span>
|
||||
<span class="lang-de">Allgemeine Geschäftsbedingungen</span>
|
||||
<span class="lang-es">Términos del servicio</span>
|
||||
<span class="lang-fr">Conditions d'utilisation</span>
|
||||
<span class="lang-br">Termos de serviço</span>
|
||||
</a>
|
||||
<p class="footer-button-link-separator">
|
||||
|
|
||||
</p>
|
||||
<a class="footer-bottom-link" href="https://www.pipedrive.com/en/privacy">
|
||||
Privacy Policy
|
||||
<span class="lang-en">Privacy Policy</span>
|
||||
<span class="lang-de">Datenschutzrichtlinie</span>
|
||||
<span class="lang-es">Política de privacidad</span>
|
||||
<span class="lang-fr">Politique de confidentialité</span>
|
||||
<span class="lang-br">Política de privacidade</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="footer-bottom-text">
|
||||
Pipedrive is a Web-based Sales CRM.
|
||||
<span class="lang-en">Pipedrive is a Web-based Sales CRM.</span>
|
||||
<span class="lang-de">Pipedrive ist ein webbasiertes Vertriebs-CRM.</span>
|
||||
<span class="lang-es">Pipedrive es un CRM de ventas basado en la web.</span>
|
||||
<span class="lang-fr">Pipedrive est un CRM commercial basé sur le Web.</span>
|
||||
<span class="lang-br">O Pipedrive é um CRM de vendas baseado na Web.</span>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@ -260,7 +272,7 @@
|
||||
.footer-language-dropdown {
|
||||
position: absolute;
|
||||
display: none;
|
||||
box-shadow: 0 3px 5px rgba(0, 0, 0, .08), 0 0 4px rgba(0,0,0,.12);
|
||||
box-shadow: 0px 3px 5px rgba(0, 0, 0, .08), 0px 0px 4px rgba(0,0,0,.12);
|
||||
bottom: 35px;
|
||||
left: 10%;
|
||||
background: #FFF;
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<div class="green-banner-wrapper green-banner-wrapper-image">
|
||||
<div class="green-banner width-limit">
|
||||
<img class="green-banner-image" alt="{{ banner_image_alt }}" src="{{ banner_image_url }}">
|
||||
<img class="green-banner-image" alt="banner image" src="{{ banner_image_url }}">
|
||||
<div class="green-banner-content">
|
||||
<h1 class="green-banner-title">
|
||||
{{ banner_title }}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<div class="green-banner-wrapper green-banner-wrapper-image green-banner-wrapper-image-alt">
|
||||
<div class="green-banner width-limit">
|
||||
<img class="green-banner-image" alt="{{ banner_image_alt }}" src="{{ banner_image_url }}">
|
||||
<img class="green-banner-image" alt="banner image" src="{{ banner_image_url }}">
|
||||
<div class="green-banner-content">
|
||||
<h3 class="green-banner-title">
|
||||
{{ banner_title }}
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
<div class="green-banner-wrapper green-banner-wrapper-text-bg-image">
|
||||
<img class="green-banner-bg-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/banner_background_image.png" alt="Learn Pipedrive green and white background ">
|
||||
<img class="green-banner-bg-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/banner_background_image.png">
|
||||
<div class="green-banner width-limit">
|
||||
<h3 class="green-banner-title">
|
||||
{{ banner_title }}
|
||||
|
||||
@ -17,8 +17,6 @@
|
||||
|
||||
{% include "cookie_banner" %}
|
||||
|
||||
{% comment %}
|
||||
Hiding language feature
|
||||
<!-- language scripts -->
|
||||
<script>
|
||||
// changing language
|
||||
@ -37,7 +35,7 @@ Hiding language feature
|
||||
document.querySelectorAll(`[data-lang="${newLanguage}"]`).forEach(newLanguageElement => {
|
||||
newLanguageElement.classList.add('current-lang');
|
||||
});
|
||||
{% if current_person.signed_in? %}
|
||||
{% if current_person.signed_in? and current_school.properties.sandbox == false %}
|
||||
if (sendRequest) {
|
||||
let xhr = new XMLHttpRequest();
|
||||
{% if current_school.sso_active? %}
|
||||
@ -52,8 +50,10 @@ Hiding language feature
|
||||
}));
|
||||
}
|
||||
{% endif %}
|
||||
|
||||
window.localStorage.setItem('academy-language', newLanguage);
|
||||
document.querySelector('body').className = `lang-${newLanguage}`;
|
||||
|
||||
}
|
||||
|
||||
// setup body class based on property or cookies
|
||||
@ -76,13 +76,187 @@ Hiding language feature
|
||||
console.log('wrong language initialized', selectedLanguage);
|
||||
window.current_language = 'en';
|
||||
}
|
||||
|
||||
|
||||
const pathParts = window.location.pathname.split('/').slice(1);
|
||||
|
||||
if (
|
||||
(pathParts.length === 1 && pathParts[0] === 'app') ||
|
||||
(pathParts.length === 2 && (pathParts[0] === 'app' && (pathParts[1] === 'video-tutorials' || pathParts[1] === 'catalog')))
|
||||
) {
|
||||
selectedLanguage = 'en';
|
||||
} else if (
|
||||
window.location.pathname.includes('/de-homepage') ||
|
||||
window.location.pathname.includes('/de-video-tutorials') ||
|
||||
window.location.pathname.includes('/de-catalog')
|
||||
) {
|
||||
selectedLanguage = 'de';
|
||||
} else if (
|
||||
window.location.pathname.includes('/es-homepage') ||
|
||||
window.location.pathname.includes('/es-video-tutorials') ||
|
||||
window.location.pathname.includes('/es-catalog')
|
||||
) {
|
||||
selectedLanguage = 'es';
|
||||
} else if (
|
||||
window.location.pathname.includes('/fr-homepage') ||
|
||||
window.location.pathname.includes('/fr-video-tutorials') ||
|
||||
window.location.pathname.includes('/fr-catalog')
|
||||
) {
|
||||
selectedLanguage = 'fr';
|
||||
} else if (
|
||||
window.location.pathname.includes('/br-homepage') ||
|
||||
window.location.pathname.includes('/br-video-tutorials') ||
|
||||
window.location.pathname.includes('/br-catalog')
|
||||
) {
|
||||
selectedLanguage = 'br';
|
||||
} else {
|
||||
selectedLanguage = 'en';
|
||||
}
|
||||
|
||||
|
||||
changeLanguage(selectedLanguage, false);
|
||||
|
||||
}
|
||||
|
||||
addEventListener('DOMContentLoaded', () => {
|
||||
setupInitialLanguage();
|
||||
});
|
||||
|
||||
function redirectToLanguageHomepage(language) {
|
||||
let homepageUrl = '';
|
||||
|
||||
switch (window.current_language) {
|
||||
case 'de':
|
||||
homepageUrl = '/app/de-homepage';
|
||||
break;
|
||||
case 'es':
|
||||
homepageUrl = '/app/es-homepage';
|
||||
break;
|
||||
case 'fr':
|
||||
homepageUrl = '/app/fr-homepage';
|
||||
break;
|
||||
case 'br':
|
||||
homepageUrl = '/app/br-homepage';
|
||||
break;
|
||||
default:
|
||||
homepageUrl = '/app';
|
||||
break;
|
||||
}
|
||||
|
||||
window.location.href = homepageUrl;
|
||||
}
|
||||
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
const academyLanguage = window.localStorage.getItem('academy-language');
|
||||
const url = window.location.href;
|
||||
const lastSegment = url.substring(url.lastIndexOf('/') + 1);
|
||||
console.log(academyLanguage);
|
||||
function redirectToRightPage() {
|
||||
let catalogUrl = '';
|
||||
let videoUrl = '';
|
||||
let homepageUrl = '';
|
||||
|
||||
if (window.location.href.includes('/app/catalog')) {
|
||||
switch (academyLanguage) {
|
||||
case 'de':
|
||||
catalogUrl = '/app/de-catalog';
|
||||
break;
|
||||
case 'es':
|
||||
catalogUrl = '/app/es-catalog';
|
||||
break;
|
||||
case 'fr':
|
||||
catalogUrl = '/app/fr-catalog';
|
||||
break;
|
||||
case 'br':
|
||||
catalogUrl = '/app/br-catalog';
|
||||
break;
|
||||
case 'en':
|
||||
catalogUrl = '/app/catalog';
|
||||
return;
|
||||
}
|
||||
window.location.href = catalogUrl;
|
||||
}
|
||||
else if (window.location.href.includes('/app/video-tutorials')) {
|
||||
switch (academyLanguage) {
|
||||
case 'de':
|
||||
videoUrl = '/app/de-video-tutorials';
|
||||
break;
|
||||
case 'es':
|
||||
videoUrl = '/app/es-video-tutorials';
|
||||
break;
|
||||
case 'fr':
|
||||
videoUrl = '/app/fr-video-tutorials';
|
||||
break;
|
||||
case 'br':
|
||||
videoUrl = '/app/br-video-tutorials';
|
||||
break;
|
||||
case 'en':
|
||||
videoUrl = '/app/catalog';
|
||||
return;
|
||||
}
|
||||
window.location.href = videoUrl;
|
||||
}
|
||||
else if (lastSegment === 'app') {
|
||||
switch (academyLanguage) {
|
||||
case 'de':
|
||||
homepageUrl = '/app/de-homepage';
|
||||
break;
|
||||
case 'es':
|
||||
homepageUrl = '/app/es-homepage';
|
||||
break;
|
||||
case 'fr':
|
||||
homepageUrl = '/app/fr-homepage';
|
||||
break;
|
||||
case 'br':
|
||||
homepageUrl = '/app/br-homepage';
|
||||
break;
|
||||
case 'en':
|
||||
homepageUrl = '/app';
|
||||
return;
|
||||
}
|
||||
window.location.href = homepageUrl;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
redirectToRightPage();
|
||||
});
|
||||
|
||||
const academyLanguage = window.localStorage.getItem('academy-language');
|
||||
console.log(academyLanguage);
|
||||
</script>
|
||||
|
||||
<!--Function to display proper courses based on language value-->
|
||||
<script>
|
||||
function filterCoursesByLanguage() {
|
||||
var selectedLanguage = localStorage.getItem('academy-language');
|
||||
var courses = document.querySelectorAll('.homepage-card-wrapper, .course-card');
|
||||
|
||||
if (!courses.length) {
|
||||
return; // Nie ma żadnych kursów na stronie
|
||||
}
|
||||
|
||||
for (var i = 0; i < courses.length; i++) {
|
||||
var course = courses[i];
|
||||
var courseLanguage = course.getAttribute('language');
|
||||
|
||||
if (selectedLanguage && courseLanguage !== selectedLanguage) {
|
||||
course.style.display = 'none'; // Ukryj kursy o nieodpowiednim języku
|
||||
} else {
|
||||
course.style.display = 'block'; // Pokaż kursy o wybranym języku
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Wywołanie funkcji po załadowaniu strony
|
||||
window.addEventListener('DOMContentLoaded', filterCoursesByLanguage);
|
||||
|
||||
// Wywołanie funkcji po zmianie wartości w local storage
|
||||
window.addEventListener('storage', filterCoursesByLanguage);
|
||||
|
||||
|
||||
</script>
|
||||
{% endcomment %}
|
||||
|
||||
<!-- on SSO school redirect new users to setup their name -->
|
||||
{% if current_person.signed_in? and current_school.sso_active? %}
|
||||
|
||||
@ -1,3 +1,29 @@
|
||||
{% if current_school.id == '3eed8278-7beb-4918-bca6-73db73e2ec3a' %}
|
||||
<script>
|
||||
const splitDefaultPageTitle = document.title.split(" | ")
|
||||
|
||||
if (window.location.pathname == "/app/catalog") {
|
||||
document.title = `Academy Courses | ${splitDefaultPageTitle[1]}`
|
||||
} else if (window.location.pathname == "/app/video-tutorials") {
|
||||
document.title = `CRM Video Tutorials | ${splitDefaultPageTitle[1]}`
|
||||
} else if (window.location.pathname == "/app/webinars") {
|
||||
document.title = `CRM Webinars | ${splitDefaultPageTitle[1]}`
|
||||
}
|
||||
</script>
|
||||
{% else %}
|
||||
<script>
|
||||
const defaultPageTitle = document.title
|
||||
|
||||
if (window.location.pathname == "/app/catalog") {
|
||||
document.title = `Academy Courses | ${defaultPageTitle}`
|
||||
} else if (window.location.pathname == "/app/video-tutorials") {
|
||||
document.title = `CRM Video Tutorials | ${defaultPageTitle}`
|
||||
} else if (window.location.pathname == "/app/webinars") {
|
||||
document.title = `CRM Webinars | ${defaultPageTitle}`
|
||||
}
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
<header class="main-header width-limit">
|
||||
<section class="header-left header-flex">
|
||||
<img
|
||||
@ -14,25 +40,25 @@
|
||||
</a>
|
||||
<div class="header-desktop-navigation header-desktop header-flex body-s">
|
||||
<a class="header-navigation-item" href="/app/catalog">
|
||||
<span class="lang-en">Academy courses</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-en">Academy Courses</span>
|
||||
<span class="lang-de">Akademie-Kurse</span>
|
||||
<span class="lang-es">Cursos de la Academia</span>
|
||||
<span class="lang-fr">Cours de l'Académie</span>
|
||||
<span class="lang-br">Cursos da Academia</span>
|
||||
</a>
|
||||
<a class="header-navigation-item" href="/app/video-tutorials">
|
||||
<span class="lang-en">Video tutorials</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-en">Video Tutorials</span>
|
||||
<span class="lang-de">Video-Tutorials</span>
|
||||
<span class="lang-es">Tutoriales en vídeo</span>
|
||||
<span class="lang-fr">Tutoriels vidéo</span>
|
||||
<span class="lang-br">Tutoriais em vídeo</span>
|
||||
</a>
|
||||
<a class="header-navigation-item" href="https://www.pipedrive.com/en/webinars" target="_blank">
|
||||
<span class="lang-en">Webinars</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Webinare</span>
|
||||
<span class="lang-es">Seminarios en línea</span>
|
||||
<span class="lang-fr">Webinaires</span>
|
||||
<span class="lang-br">Webinars</span>
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
@ -40,12 +66,12 @@
|
||||
<div class="header-desktop header-flex">
|
||||
<a class="header-navigation-item body-s" href="https://www.pipedrive.com">
|
||||
<span class="lang-en">go to</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span> pipedrive.com
|
||||
<span class="lang-de">Gehen Sie zu</span>
|
||||
<span class="lang-es">ir a</span>
|
||||
<span class="lang-fr">aller à</span>
|
||||
<span class="lang-br">ir para</span> pipedrive.com
|
||||
</a>
|
||||
|
||||
|
||||
{% if current_person.signed_in? %}
|
||||
<div class="np-hidden-mobile np-header-search np-header-search-expanded">
|
||||
<form action="{% route search %}" method="get" data-test="desktop-search">
|
||||
@ -60,17 +86,17 @@
|
||||
</form>
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="language-dropdown-wrapper">
|
||||
<div class="language-dropdown-wrapper" style="margin-left:20px;">
|
||||
<div class="header-language-selection">
|
||||
<i class="fal fa-globe"></i>
|
||||
<i class="fal fa-angle-down"></i>
|
||||
</div>
|
||||
<ul class="languages-dropdown">
|
||||
<li data-lang="en" class="current-lang" onclick="changeLanguage(this.getAttribute('data-lang'))">English</li>
|
||||
<li data-lang="de" onclick="changeLanguage(this.getAttribute('data-lang'))">Deutsch</li>
|
||||
<li data-lang="es" onclick="changeLanguage(this.getAttribute('data-lang'))">Español</li>
|
||||
<li data-lang="fr" onclick="changeLanguage(this.getAttribute('data-lang'))">Français</li>
|
||||
<li data-lang="br" onclick="changeLanguage(this.getAttribute('data-lang'))">Português (BR)</li>
|
||||
<li data-lang="en" class="current-lang" onclick="changeLanguage(this.getAttribute('data-lang')), redirectToLanguageHomepage(this.value)">English</li>
|
||||
<li data-lang="de" onclick="changeLanguage(this.getAttribute('data-lang')), redirectToLanguageHomepage(this.value)">Deutsch</li>
|
||||
<li data-lang="es" onclick="changeLanguage(this.getAttribute('data-lang')), redirectToLanguageHomepage(this.value)">Español</li>
|
||||
<li data-lang="fr" onclick="changeLanguage(this.getAttribute('data-lang')), redirectToLanguageHomepage(this.value)">Français</li>
|
||||
<li data-lang="br" onclick="changeLanguage(this.getAttribute('data-lang')), redirectToLanguageHomepage(this.value)">Português (BR)</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@ -101,39 +127,39 @@
|
||||
{% endif %}
|
||||
style="margin-top: 15px;">
|
||||
<span class="lang-en">Settings</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Einstellungen</span>
|
||||
<span class="lang-es">Ajustes</span>
|
||||
<span class="lang-fr">Paramètres</span>
|
||||
<span class="lang-br">Configurações</span>
|
||||
</a>
|
||||
<a class="profile-dropdown-link body-s" href="/learners/sign_out">
|
||||
<span class="lang-en">Log out</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Abmelden</span>
|
||||
<span class="lang-es">Cerrar sesión</span>
|
||||
<span class="lang-fr">Déconnexion</span>
|
||||
<span class="lang-br">Sair</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
{% else %}
|
||||
<a class="header-navigation-item body-s" href="#sso-widget">
|
||||
<span class="lang-en">Log in</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Einloggen</span>
|
||||
<span class="lang-es">Conectarse</span>
|
||||
<span class="lang-fr">Connexion</span>
|
||||
<span class="lang-br">Entrar</span>
|
||||
</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
|
||||
<div class="header-mobile header-flex">
|
||||
{% unless current_person.signed_in? %}
|
||||
<a class="header-register-button button-1 button-small" href="#sso-widget">
|
||||
<span class="lang-en">Register</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Anmelden</span>
|
||||
<span class="lang-es">Regístrese en</span>
|
||||
<span class="lang-fr">Inscription</span>
|
||||
<span class="lang-br">Cadastrar-se</span>
|
||||
</a>
|
||||
{% endunless %}
|
||||
</div>
|
||||
@ -262,7 +288,7 @@
|
||||
min-width:200px;
|
||||
list-style:none;
|
||||
transition: opacity 0.2s;
|
||||
box-shadow: 0 3px 5px rgba(0,0,0,.08),0 0 4px rgba(0,0,0,.12);
|
||||
box-shadow: 0px 3px 5px rgba(0,0,0,.08),0px 0px 4px rgba(0,0,0,.12);
|
||||
z-index: 1;
|
||||
}
|
||||
.languages-dropdown:after {
|
||||
@ -299,7 +325,7 @@
|
||||
background-color:#edeef0;
|
||||
}
|
||||
/* END LANGUAGE DROPDOWN */
|
||||
|
||||
|
||||
.header-profile-image {
|
||||
width: 60px;
|
||||
aspect-ratio: 1/1;
|
||||
@ -350,7 +376,7 @@
|
||||
.profile-dropdown-link {
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
|
||||
@media only screen and (min-width: 1151px) {
|
||||
.header-mobile {
|
||||
display: none !important;
|
||||
@ -370,12 +396,12 @@
|
||||
// profile settings dropdown
|
||||
{% if current_person.signed_in? %}
|
||||
document.querySelector('body').addEventListener('click', listenerDropdown);
|
||||
|
||||
|
||||
function toggleDropdown() {
|
||||
let element = document.querySelector('.header-profile-menu');
|
||||
element.classList.toggle('header-profile-menu-open');
|
||||
}
|
||||
|
||||
|
||||
function listenerDropdown(event) {
|
||||
let isDropdownOpen = !!document.querySelector('.header-profile-menu-open');
|
||||
if (isDropdownOpen) {
|
||||
@ -391,7 +417,7 @@
|
||||
}
|
||||
}
|
||||
{% endif %}
|
||||
|
||||
|
||||
// setup active subpage indicator on navigations
|
||||
addEventListener("DOMContentLoaded", () => {
|
||||
if (window.location.pathname === '/app/catalog') {
|
||||
|
||||
@ -20,11 +20,11 @@
|
||||
{% endif %}
|
||||
{% else %}
|
||||
<a class="side-menu-login" href="/learners/sign_in">
|
||||
<span class="lang-en">Login</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-en">Log in</span>
|
||||
<span class="lang-de">Einloggen</span>
|
||||
<span class="lang-es">Conectarse</span>
|
||||
<span class="lang-fr">Connexion</span>
|
||||
<span class="lang-br">Entrar</span>
|
||||
</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
@ -48,29 +48,29 @@
|
||||
|
||||
<div class="side-menu-link">
|
||||
<a href="/app/catalog" id="side-menu-courses">
|
||||
<span class="lang-en">Academy courses</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-en">Academy Courses</span>
|
||||
<span class="lang-de">Academy-Kurse</span>
|
||||
<span class="lang-es">Cursos de la Academia</span>
|
||||
<span class="lang-fr">Cours de l'Académie</span>
|
||||
<span class="lang-br">Cursos da Academia</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="side-menu-link">
|
||||
<a href="/app/video-tutorials" id="side-menu-tutorials">
|
||||
<span class="lang-en">Video tutorials</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-en">Video Tutorials</span>
|
||||
<span class="lang-de">Video-Tutorials</span>
|
||||
<span class="lang-es">Tutoriales en vídeo</span>
|
||||
<span class="lang-fr">Tutoriels vidéo</span>
|
||||
<span class="lang-br">Tutoriais</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="side-menu-link">
|
||||
<a href="https://www.pipedrive.com/en/webinars" target="_blank" id="side-menu-webinars">
|
||||
<span class="lang-en">Webinars</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Webinare</span>
|
||||
<span class="lang-es">Seminarios en línea</span>
|
||||
<span class="lang-fr">Webinaires</span>
|
||||
<span class="lang-br">Webinars</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
@ -131,7 +131,7 @@
|
||||
overflow: hidden;
|
||||
opacity: 0;
|
||||
transition: opacity 0.2s;
|
||||
box-shadow: 0 3px 5px rgba(0, 0, 0, .08), 0 0 4px rgba(0,0,0,.12);
|
||||
box-shadow: 0px 3px 5px rgba(0, 0, 0, .08), 0px 0px 4px rgba(0,0,0,.12);
|
||||
}
|
||||
.side-menu-language > span {
|
||||
cursor: pointer;
|
||||
|
||||
@ -7,10 +7,10 @@
|
||||
</h1>
|
||||
<div class="green-banner-text">
|
||||
<span class="lang-en">Welcome! We have saved your progress about <strong>courses</strong></span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Willkommen! Wir haben Ihren Fortschritt bei den <strong>Kursen</strong> gespeichert</span>
|
||||
<span class="lang-es">Bienvenido Hemos guardado su progreso sobre los <strong>cursos</strong></span>
|
||||
<span class="lang-fr">Bienvenue ! Nous avons enregistré votre progression dans les <strong>cours</strong>.</span>
|
||||
<span class="lang-br">Seja bem-vindo(a)! Salvamos o seu progresso nos cursos</span>
|
||||
</div>
|
||||
<div class="homepage-banner-stats">
|
||||
{% assign in_progress = 0 %}
|
||||
@ -37,10 +37,10 @@
|
||||
</div>
|
||||
<div class="stat-text body-s">
|
||||
<span class="lang-en">In progress</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">In Arbeit</span>
|
||||
<span class="lang-es">En curso</span>
|
||||
<span class="lang-fr">En cours</span>
|
||||
<span class="lang-br">Em andamento</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -53,10 +53,10 @@
|
||||
</div>
|
||||
<div class="stat-text body-s">
|
||||
<span class="lang-en">Not started</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Nicht gestartet</span>
|
||||
<span class="lang-es">No iniciado</span>
|
||||
<span class="lang-fr">Pas encore commencé</span>
|
||||
<span class="lang-br">Não iniciado</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -69,10 +69,10 @@
|
||||
</div>
|
||||
<div class="stat-text body-s">
|
||||
<span class="lang-en">Completed</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Abgeschlossen</span>
|
||||
<span class="lang-es">Completado</span>
|
||||
<span class="lang-fr">Complété</span>
|
||||
<span class="lang-br">Concluído</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -5,10 +5,10 @@
|
||||
<h1 class="green-banner-title">
|
||||
<!-- add   after 'Hi' to keep space between words -->
|
||||
<span class="lang-en">Hi </span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Hallo </span>
|
||||
<span class="lang-es">Hola </span>
|
||||
<span class="lang-fr">Bonjour </span>
|
||||
<span class="lang-br">Oi </span>
|
||||
<span class="first-name-field">
|
||||
{% if current_person.first_name %}
|
||||
{{ current_person.first_name }}
|
||||
@ -21,10 +21,10 @@
|
||||
</h1>
|
||||
<div class="green-banner-text">
|
||||
<span class="lang-en">Welcome to your Pipedrive training hub! Learn the basics of sales CRM software and browse dozens of video guides to expand your knowledge</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Willkommen in Ihrem Pipedrive-Trainingszentrum! Verstehen Sie die Grundlagen von Vertriebs-CRM-Software und erweitern Sie Ihr Wissen mit Dutzenden von Videoanleitungen</span>
|
||||
<span class="lang-es">¡Bienvenido a tu centro de capacitación de Pipedrive! Aprende los conceptos básicos del software de CRM de ventas y navega por docenas de guías en video para ampliar tus conocimientos</span>
|
||||
<span class="lang-fr">Bienvenue dans votre centre de formation Pipedrive ! Découvrez les bases pour bien utiliser votre logiciel CRM commercial et parcourez des dizaines de guides vidéo pour approfondir vos connaissances.</span>
|
||||
<span class="lang-br">Bem-vindo(a) ao seu centro de treinamento do Pipedrive! Aprenda o básico sobre nosso software de CRM de vendas e navegue por dezenas de guias em vídeo para expandir seu conhecimento.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -4,26 +4,25 @@
|
||||
</h2>
|
||||
<div class="faq-list">
|
||||
<div class="faq-element">
|
||||
<div class="faq-question" onclick="this.classList.toggle('open')" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question" onclick="this.classList.toggle('open')" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question-icon">
|
||||
<i class="far fa-angle-down faq-icon-closed"></i>
|
||||
<i class="far fa-angle-up faq-icon-opened"></i>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">How to learn CRM</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Wie lernt man CRM? </span>
|
||||
<span class="lang-es">Cómo aprender a usar un CRM</span>
|
||||
<span class="lang-fr">Comment se former au CRM ?</span>
|
||||
<span class="lang-br">Como aprender a usar um CRM</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">CRM tools(customer relationship management tools) can help you improve customer experiences with your brand. For the most effective CRM, you need to master various hard and soft skills, including technical, analytical and communication skills. Learning CRM skills doesn’t have to be complicated: There are many ways to grow your skill sets, such as with video tutorials, online guides and quizzes.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
</div>
|
||||
<span class="lang-en">CRM tools(customer relationship management tools) can help you improve customer experiences with your brand. For the most effective CRM, you need to master various hard and soft skills, including technical, analytical and communication skills. Learning CRM skills doesn’t have to be complicated: There are many ways to grow your skill sets, such as with video tutorials, online guides and quizzes</span>
|
||||
<span class="lang-de">Mit CRM-Tools (Customer Relationship Management Tools) verbessern Sie die Customer Experience für Ihre Brand. Um ein CRM effektiv zu nutzen, müssen Sie verschiedene Hard- und Softskills beherrschen, dazu gehören technische, analytische und kommunikative Fähigkeiten. CRM-Fähigkeiten lassen sich leicht erlernen: Es gibt zahlreiche Möglichkeiten, Ihre Fähigkeiten zu erweitern, wie etwa Video-Tutorials, Online-Guides und das ein oder andere Quiz.</span>
|
||||
<span class="lang-es">Las herramientas de CRM (herramientas de administración de relaciones con los clientes) pueden ayudarte a mejorar las experiencias de los clientes con tu marca. Para que el CRM sea efectivo, debes dominar varias habilidades duras y blandas, incluidas las técnicas, analíticas y de comunicación. Aprender a usar un CRM no tiene por qué ser complicado: hay muchas maneras de hacer crecer tus conjuntos de habilidades, como tutoriales en video, guías en línea y cuestionarios.</span>
|
||||
<span class="lang-fr">Les outils CRM (customer relationship management) vous aident à améliorer l’expérience client et à attirer de nouveaux prospects vers votre marque. Un projet CRM fait appel à de nombreux pré-requis, qu’il s’agisse de compétences techniques ou encore de « soft skills » tels que des capacités analytiques ou relationnelles. Les manières de se former à la Gestion de la Relation Client sont multiples : à vous de choisir entre les tutoriels vidéo, guides pratiques et questionnaires !</span>
|
||||
<span class="lang-br">As ferramentas CRM (customer relationship management tools em inglês) ajudam você a melhorar a experiência de clientes com a sua marca. Para que um CRM seja eficiente, você precisa dominar habilidades mais pragmáticas e interpessoais, incluindo habilidades técnicas, analíticas e de comunicação. Mas isso não precisa ser complicado! Há muitas maneiras de exercitar e expandir estas habilidades com tutoriais e guias online e testes, por exemplo.</span> </div>
|
||||
</div>
|
||||
|
||||
<div class="faq-element">
|
||||
@ -34,19 +33,18 @@
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">How to learn CRM online</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Wie kann man CRM online lernen?</span>
|
||||
<span class="lang-es">Cómo aprender a usar un CRM en línea</span>
|
||||
<span class="lang-fr">Existe-t-il des formations professionnelles en ligne sur les outils CRM ?</span>
|
||||
<span class="lang-br">Como aprender a usar um CRM online</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">The benefits of CRM tools are endless, but finding the best <a href="https://www.pipedrive.com/en/features/crm-system">CRM system</a> for your business can be a struggle. Pipedrive Learn is a centralized platform full of online courses, video tutorials and webinars written and directed by our experts. Learn how to rally your sales force and close more deals in less time with Pipedrive CRM. You’ll find the solution in our comprehensive video library if you get stuck or have queries. For more advice on sharpening your sales and marketing toolsets, visit the <a href="https://www.pipedrive.com/en/blog">Pipedrive blog</a>.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
</div>
|
||||
<span class="lang-de">Die Vorteile von CRM-Tools sind endlos, aber es kann schwierig sein, das beste <a href="https://www.pipedrive.com/de/features/crm-system">CRM-System</a> für Ihr Unternehmen zu finden.Pipedrive Learn ist eine zentralisierte Plattform voller Online-Kurse, Video-Tutorials und Webinare, die von unseren Experten erstellt wurden. Wie Sie mit Pipedrives CRM Ihr Vertriebsteam unterstützen und mehr Deals in weniger Zeit abschließen können?Die Antworten darauf finden Sie in unserer umfassenden Video-Datenbank. Für Ratschläge, um Ihr Toolset in Vertrieb und Marketing besser aufzustellen, besuchen Sie den <a href="https://www.pipedrive.com/de/blog">Pipedrive Blog</a>.</span>
|
||||
<span class="lang-es">Las ventajas de las herramientas de CRM son infinitas, pero encontrar el mejor <a href="https://www.pipedrive.com/es-es/features/crm-system">sistema de CRM</a> para tu negocio puede ser una batalla. Aprender con Pipedrive es una plataforma centralizada llena de cursos en línea, tutoriales en video y seminarios web escritos y dirigidos por nuestros expertos. Descubre cómo reunir a tu fuerza de ventas y cerrar más tratos en menos tiempo con el CRM de Pipedrive. Encontrarás la solución en nuestra completa biblioteca de videos si te estancas o tiene dudas. Para obtener más consejos sobre cómo mejorar tus conjuntos de herramientas de ventas y marketing, visita el <a href="https://www.pipedrive.com/es/blog">blog de Pipedrive</a>.</span>
|
||||
<span class="lang-fr">Les avantages d’un logiciel CRM n’ont de limite que l’imagination. Pour autant, il n’est pas toujours évident de dénicher le <a href="https://www.pipedrive.com/fr/features/crm-system">meilleur CRM</a>, autrement dit, celui que vous pourrez personnaliser pour l’adapter aux besoins de votre entreprise. Pipedrive Learn est un centre de formation en ligne qui vous propose des didacticiels, des tutoriels vidéos et des webinaires écrits et dirigés par nos spécialistes. Apprenez à canaliser votre force de vente et à booster vos résultats commerciaux grâce au CRM sur mesure de Pipedrive. Pensez à consulter notre vidéothèque ou à visiter le <a href="https://www.pipedrive.com/fr/blog">blog de Pipedrive</a> pour obtenir davantage de conseils et d’astuces pour affûter vos outils de vente et de marketing. </span>
|
||||
<span class="lang-br">Os benefícios das ferramentas CRM são infinitos, mas encontrar o sistema de CRM para a sua empresa pode ser difícil. O Aprenda com o Pipedrive é uma plataforma centralizada com cursos, tutoriais em vídeo e webinars escritos e dirigidos por nossos especialistas. Saiba como usar sua força de vendas e fechar ainda mais negócios em menos tempo com o CRM Pipedrive. Neste espaço você encontrará a nossa biblioteca de vídeos caso tenha dúvidas. Para mais conselhos sobre como melhorar suas ferramentas de vendas e marketing, visite o blog do Pipedrive .</span> </div>
|
||||
</div>
|
||||
|
||||
<div class="faq-element">
|
||||
@ -57,19 +55,18 @@
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">How to learn CRM software</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Wie kann man den Umgang mit CRM-Software lernen?</span>
|
||||
<span class="lang-es">Cómo aprender a usar un software de CRM</span>
|
||||
<span class="lang-fr">Par où commencer votre formation à la GRC ?</span>
|
||||
<span class="lang-br">Como aprender a usar um software CRM</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">Various types of CRM can help you succeed in business, from cloud-based CRM systems to pen-and-paper solutions. You can access in-depth guides online, including on social media sites like LinkedIn, to learn more about your CRM software. While tutorials may be helpful, high pricing might block you from getting the information you need. Pipedrive Learn is free to access and offers tutorials for all of Pipedrive's features under one roof. Get more tips and tricks to maximize your CRM tool by visiting our <a href="https://support.pipedrive.com/en">Help Center</a>.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
</div>
|
||||
<span class="lang-de">Verschiedene Arten von CRM können den Erfolg Ihres Unternehmens unterstützen, angefangen bei Stift-und-Papier-Lösungen bis hin zu cloud-basierten CRM-Systemen. Sie können online, etwa auf Social Media Seiten wie LinkedIn, detaillierte Leitfäden finden, um mehr über CRM Software zu lernen. Online-Kurse können hilfreich sein, aber die hohen Preise könnten Sie daran hintern, die Informationen zu erhalten, die sie wirklich brauchen. Pipedrive Learn ist kostenlos zugänglich und bietet Tutorials zu allen Pipedrive Funktionen an einem Ort. In unserem <a href="https://support.pipedrive.com/en">Help Centre</a> erhalten Sie mehr Tipps und Tricks, um Ihr CRM Tool zu optimieren.</span>
|
||||
<span class="lang-es">Varios tipos de CRM pueden ayudarte a tener éxito en los negocios, desde sistemas de CRM basados en la nube hasta soluciones de lápiz y papel. Puedes acceder a guías detalladas en línea, incluso en sitios de redes sociales como LinkedIn, para obtener más información sobre tu software de CRM. Si bien los tutoriales pueden ser útiles, los precios altos pueden impedirte obtener la información que necesitas. Aprender con Pipedrive es de acceso gratuito y ofrece tutoriales para todas las funciones de Pipedrive bajo un mismo techo. Obtén más consejos y trucos para maximizar tu herramienta de CRM al visitar nuestro <a href="https://support.pipedrive.com/en">Centro de ayuda</a>.</span>
|
||||
<span class="lang-fr">Toutes les entreprises ne recourent pas aux mêmes outils pour gérer leur relation client. Si certaines s’accommodent du bon vieux système papier et crayon, la plupart tendent à privilégier des systèmes CRM SaaS basés dans le cloud. Pipedrive Learn vous propose gratuitement quantités de tutoriels et de vidéos sur les moindres fonctionnalités de votre logiciel. Visitez notre <a href="https://support.pipedrive.com/en">centre d’assistance</a> pour obtenir davantage de conseils et astuces.</span>
|
||||
<span class="lang-br">Vários tipos de CRMs podem ajudar você a ter sucesso, dos sistemas baseados em nuvem ao papel e caneta. Você pode acessar guias aprofundados online, incluindo sites de redes sociais como o LinkedIn, para aprender mais sobre o seu software CRM. Embora tutoriais possam ser úteis, preços altos podem ser um empecilho para obter as informações que você precisa. O Aprenda com o Pipedrive oferece acesso gratuito e tutoriais sobre todos os recursos do Pipedrive em um só lugar. Receba mais dicas e conheça truques para maximizar o uso da sua ferramenta CRM em nossa Central de ajuda.</span> </div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
|
||||
{% assign card_image = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp" %}
|
||||
{% assign card_image = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-generic-cards-academy.png" %}
|
||||
{% assign card_alt_text = "Man watching at a Pipedrive sales academy course on the laptop" %}
|
||||
{% assign card_title = '<span class="lang-en">Academy courses</span>
|
||||
<span class="lang-de"></span>
|
||||
@ -22,7 +22,7 @@
|
||||
{% assign card_button_link = "/app/catalog" %}
|
||||
{% include "cards_generic" %}
|
||||
|
||||
{% assign card_image = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-video-tutorials.jpg" %}
|
||||
{% assign card_image = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-generic-cards-video-tutorial.png" %}
|
||||
{% assign card_alt_text = "Woman watching a Pipedrive crm video tutorial on the laptop" %}
|
||||
{% assign card_title = '<span class="lang-en">Video tutorials</span>
|
||||
<span class="lang-de"></span>
|
||||
@ -38,7 +38,7 @@
|
||||
{% assign card_button_link = "/app/video-tutorials" %}
|
||||
{% include "cards_generic" %}
|
||||
|
||||
{% assign card_image = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-webinars.webp" %}
|
||||
{% assign card_image = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-generic-cards-webinars.png" %}
|
||||
{% assign card_alt_text = "Group of people sitting at a Pipedrive sales seminar" %}
|
||||
{% assign card_title = '<span class="lang-en">Webinars</span>
|
||||
<span class="lang-de"></span>
|
||||
|
||||
@ -2,31 +2,31 @@
|
||||
<div class="homepage-filter">
|
||||
<div class="filter-item body-s strong filter-item-active" filter-items="latest" onclick='filterHomepage(this)'>
|
||||
<span class="lang-en">Latest activity</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Letzte Aktivität</span>
|
||||
<span class="lang-es">Última actividad</span>
|
||||
<span class="lang-fr">Dernière activité</span>
|
||||
<span class="lang-br">Actividade mais recente</span>
|
||||
</div>
|
||||
<div class="filter-item body-s strong" filter-items="in-progress" onclick='filterHomepage(this)'>
|
||||
<span class="lang-en">In progress</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">In Arbeit</span>
|
||||
<span class="lang-es">En curso</span>
|
||||
<span class="lang-fr">En cours</span>
|
||||
<span class="lang-br">Em andamento</span>
|
||||
</div>
|
||||
<div class="filter-item body-s strong" filter-items="completed" onclick='filterHomepage(this)'>
|
||||
<span class="lang-en">Completed</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Abgeschlossen</span>
|
||||
<span class="lang-es">Completado</span>
|
||||
<span class="lang-fr">Complété</span>
|
||||
<span class="lang-br">Concluído</span>
|
||||
</div>
|
||||
<div class="filter-item body-s strong" filter-items="my-list" onclick='filterHomepage(this)'>
|
||||
<span class="lang-en">My list</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Meine Liste</span>
|
||||
<span class="lang-es">Mi lista</span>
|
||||
<span class="lang-fr">Ma liste</span>
|
||||
<span class="lang-br">Minha lista</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -35,10 +35,10 @@
|
||||
<div class="homepage-courses-subsection homepage-courses-subsection-courses">
|
||||
<h3 class="homepage-courses-section-title">
|
||||
<span class="lang-en">Your latest courses</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Ihre letzten Kurse</span>
|
||||
<span class="lang-es">Sus últimos cursos</span>
|
||||
<span class="lang-fr">Vos derniers cours</span>
|
||||
<span class="lang-br">Seus últimos cursos</span>
|
||||
</h3>
|
||||
<div class="homepage-courses-list">
|
||||
{% assign any_course = false %}
|
||||
@ -63,10 +63,10 @@
|
||||
<div class="homepage-courses-subsection homepage-courses-subsection-tutorials">
|
||||
<h3 class="homepage-courses-section-title">
|
||||
<span class="lang-en">Your latest tutorials</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Ihre neuesten Tutorials</span>
|
||||
<span class="lang-es">Tus últimos tutoriales</span>
|
||||
<span class="lang-fr">Vos derniers tutoriels</span>
|
||||
<span class="lang-br">Seus últimos tutoriais</span>
|
||||
</h3>
|
||||
<div class="homepage-courses-list">
|
||||
{% assign any_course = false %}
|
||||
@ -106,10 +106,10 @@
|
||||
<div class="homepage-courses-section filter-hidden" filter-name="in-progress">
|
||||
<h3 class="homepage-courses-section-title">
|
||||
<span class="lang-en">Courses waiting for you to finish</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Kurse, die Sie noch beenden müssen</span>
|
||||
<span class="lang-es">Cursos a la espera de que termine</span>
|
||||
<span class="lang-fr">Cours en attente d'être complétés</span>
|
||||
<span class="lang-br">Cursos esperando por você para terminar</span>
|
||||
</h3>
|
||||
<div class="homepage-courses-list">
|
||||
{% for course in courses.enrolled %}
|
||||
@ -123,10 +123,10 @@
|
||||
<div class="homepage-courses-section filter-hidden" filter-name="completed">
|
||||
<h3 class="homepage-courses-section-title">
|
||||
<span class="lang-en">Courses you completed</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Abgeschlossene Kurse</span>
|
||||
<span class="lang-es">Cursos realizados</span>
|
||||
<span class="lang-fr">Les cours que vous avez suivis</span>
|
||||
<span class="lang-br">Cursos que você completou</span>
|
||||
</h3>
|
||||
<div class="homepage-courses-list">
|
||||
{% for course in courses.enrolled %}
|
||||
@ -140,10 +140,10 @@
|
||||
<div class="homepage-courses-section filter-hidden" filter-name="my-list">
|
||||
<h3 class="homepage-courses-section-title">
|
||||
<span class="lang-en">All your courses</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Alle Ihre Kurse</span>
|
||||
<span class="lang-es">Todos sus cursos</span>
|
||||
<span class="lang-fr">Tous vos cours</span>
|
||||
<span class="lang-br">Todos os seus cursos</span>
|
||||
</h3>
|
||||
<div class="homepage-courses-list">
|
||||
{% for course in courses.enrolled %}
|
||||
|
||||
@ -2,15 +2,15 @@
|
||||
<div class="page-info width-limit">
|
||||
<div class="page-info-section">
|
||||
<div class="page-info-section-image-wrapper">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp" alt="Man watching at a Pipedrive sales academy course on the laptop">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp">
|
||||
</div>
|
||||
<div class="page-info-section-text">
|
||||
<h3 class="page-info-section-title">
|
||||
<span class="lang-en">Academy courses</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Academy-Kurse</span>
|
||||
<span class="lang-es">Cursos de la Academia</span>
|
||||
<span class="lang-fr">Cours de l’Académie</span>
|
||||
<span class="lang-br">Cursos da Academia</span>
|
||||
</h3>
|
||||
<div class="page-info-section-description">
|
||||
<span class="lang-en">
|
||||
@ -21,32 +21,57 @@
|
||||
<li>Unlock in-depth marketing training courses covering sales pipelines, email marketing and more.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">
|
||||
<ul>
|
||||
<li>Lernen Sie die Grundlagen von Pipedrive, um Kundendaten zu optimieren Expertentipps, mit denen Sie Arbeitsabläufe verfeinern und den <a href="https://www.pipedrive.com/de/blog/vertriebsprozess">Vertriebsprozess</a> verbessern können.</li>
|
||||
<li>Entdecken Sie Vertriebskurse, mit denen Sie Ihre CRM-Lösung nutzen können, um mehr Deals zu gewinnen Zugang zu fundierten Marketing-Kursen, die Sales-Pipelines, E-Mail-Marketing und mehr abdecken</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
<ul>
|
||||
<li>Aprende los fundamentos de Pipedrive para agilizar los datos de tus clientes.</li>
|
||||
<li>Obtén el consejo de los expertos para refinar tu flujo de trabajo y mejorar tu <a href="https://www.pipedrive.com/es/blog/guia-basica-crear-proceso-ventas">proceso de ventas</a>.</li>
|
||||
<li>Descubre cursos de ventas que te ayuden a aprovechar tu solución de CRM para ganar más tratos.</li>
|
||||
<li>Desbloquea cursos detallados de capacitación de marketing que abarcan embudos de venta, marketing por correo electrónico y más.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
<ul>
|
||||
<li>Découvrez les fondamentaux de Pipedrive pour rationaliser vos données clients.</li>
|
||||
<li>Profitez de conseils d'experts pour optimiser votre flux de travail et améliorer votre <a href="https://www.pipedrive.com/fr/blog/processus-commercial">processus de vente</a> Suivez des cours sur la vente qui vous aideront à mieux exploiter votre CRM pour gagner davantage d’affaires.</li>
|
||||
<li>Débloquez des formations exclusives sur des thèmes comme le pipeline commercial, la fidélisation, le marketing automation ou encore le marketing relationnel.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
<ul>
|
||||
<li>Aprenda o básico sobre o Pipedrive para simplificar dados de clientes.</li>
|
||||
<li>Receba dicas de especialistas sobre como refinar seu fluxo de trabalho e melhore seu <a href="https://www.pipedrive.com/pt/blog/processo-de-vendas">processo de vendas</a>.</li>
|
||||
<li>Descubra cursos de vendas que vão ajudar você a aproveitar seu CRM ao máximo e fechar mais negócios.</li>
|
||||
<li>Curta cursos de treinamento em marketing sobre assuntos como pipeline de vendas, e-mail marketing e mais.</li>
|
||||
</ul>
|
||||
</span>
|
||||
</div>
|
||||
<a class="button-large button-2" href="/app/catalog">
|
||||
<span class="lang-en">See more</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Mehr</span>
|
||||
<span class="lang-es">Ver más cursos</span>
|
||||
<span class="lang-fr">Voir plus</span>
|
||||
<span class="lang-br">Veja mais</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-info-section">
|
||||
<div class="page-info-section-image-wrapper">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-video-tutorials.jpg" alt="Woman watching a Pipedrive crm video tutorial on the laptop">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-video-tutorials.jpg">
|
||||
</div>
|
||||
<div class="page-info-section-text">
|
||||
<h3 class="page-info-section-title">
|
||||
<span class="lang-en">Video tutorials</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Video-Tutorials</span>
|
||||
<span class="lang-es">Tutoriales en vídeo</span>
|
||||
<span class="lang-fr">Tutoriels vidéo</span>
|
||||
<span class="lang-br">Tutoriais em vídeo</span>
|
||||
</h3>
|
||||
<div class="page-info-section-description">
|
||||
<span class="lang-en">
|
||||
@ -56,32 +81,56 @@
|
||||
<li>Upskill yourself with videos on products and features that you aren’t using to their full potential.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">
|
||||
<ul>
|
||||
<li>Kurze Produkt-Tutorials zu Updates und den neuesten Pipedrive-Funktionen.</li>
|
||||
<li>Teilen Sie Playlists mit neuen Teammitgliedern, um den Onboarding-Prozess zu beschleunigen.</li>
|
||||
<li>Erlernen Sie neue Fähigkeiten mit Videos zu Produkten und Funktionen, deren Möglichkeiten Sie bisher nicht voll ausschöpfen.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
<ul>
|
||||
<li>Aprende a usar las funciones más recientes de Pipedrive con tutoriales rápidos de productos.</li>
|
||||
<li>Comparte listas de reproducción con nuevos miembros del equipo para acelerar el proceso de incorporación.</li>
|
||||
<li>Mejora tus habilidades con videos sobre productos y funciones sobre las que no estás utilizando su potencial al máximo.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
<ul>
|
||||
<li>Initiez-vous aux derniers outils de Pipedrive avec des tutoriels clairs et concis.</li>
|
||||
<li>Partagez vos listes de lecture avec vos nouvelles recrues pour accélérer leur intégration.</li>
|
||||
<li>Développez vos compétences en regardant des vidéos sur les produits et les fonctionnalités que vous n’utilisez pas à leur plein potentiel.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
<ul>
|
||||
<li>Aprenda como usar os recursos mais recentes do Pipedrive em tutoriais rápidos sobre o produto.</li>
|
||||
<li>Compartilhe playlists com novos membros da equipe para acelerar o processo de integração.</li>
|
||||
<li>Melhores suas habilidades com vídeos sobre produtos e recursos que você ainda não está aproveitando ao máximo.</li>
|
||||
</ul>
|
||||
</span>
|
||||
</div>
|
||||
<a class="button-large button-2" href="/app/video-tutorials">
|
||||
<span class="lang-en">See more</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Mehr</span>
|
||||
<span class="lang-es">Ver más cursos</span>
|
||||
<span class="lang-fr">Voir plus</span>
|
||||
<span class="lang-br">Veja mais</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-info-section">
|
||||
<div class="page-info-section-image-wrapper">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-webinars.webp" alt="Group of people sitting at a Pipedrive sales seminar">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-webinars.webp">
|
||||
</div>
|
||||
<div class="page-info-section-text">
|
||||
<h3 class="page-info-section-title">
|
||||
<span class="lang-en">Webinars</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Webinare</span>
|
||||
<span class="lang-es">Seminarios web</span>
|
||||
<span class="lang-fr">Webinaires</span>
|
||||
<span class="lang-br">Webinars</span>
|
||||
</h3>
|
||||
<div class="page-info-section-description">
|
||||
<span class="lang-en">
|
||||
@ -91,58 +140,103 @@
|
||||
<li>Master your pipeline setup and make sure you tailor it to your needs with professional advice.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">
|
||||
<ul>
|
||||
<li>Lernen Sie direkt von unseren Produkt-Entwicklern und Managern alles zu CRM-Tools und -Funktionen.</li>
|
||||
<li>Fragen Sie uns alles, was Sie wissen wollen, um Ihre Vertriebsfähigkeiten zu verbessern.</li>
|
||||
<li>Nutzen Sie professionelle Tipps, um Ihre Pipeline optimal einzurichten und an Ihre Bedürfnisse anzupassen.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
<ul>
|
||||
<li>Conoce las herramientas y características de CRM directamente de nuestros ingenieros y gerentes de productos.</li>
|
||||
<li>Pregúntanos todo lo que necesitas saber para optimizar tu juego de ventas.</li>
|
||||
<li>Domina la configuración de tu embudo y asegúrate de adaptarla a tus necesidades con asesoramiento profesional.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
<ul>
|
||||
<li>Informez-vous sur nos fonctionnalités et nos outils CRM auprès de nos ingénieurs et chefs de produit.</li>
|
||||
<li>Trouvez réponse à toutes vos questions pour faire décoller vos ventes.</li>
|
||||
<li>Découvrez des conseils et astuces pour configurer votre pipeline à la perfection et l’adapter à vos besoins spécifiques.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
<ul>
|
||||
<li>Saiba tudo sobre ferramentas e recursos do CRM direto de nossos engenheiros de produto e gerentes.</li>
|
||||
<li>Tire dúvidas sobre o que você precisa para otimizar suas vendas.</li>
|
||||
<li>Domine a configuração do seu pipeline e adapte-o de acordo com as suas necessidades com conselhos profissionais.</li>
|
||||
</ul>
|
||||
</span>
|
||||
</div>
|
||||
<a class="button-large button-2" href="https://www.pipedrive.com/en/webinars" target="_blank">
|
||||
<span class="lang-en">See more</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Mehr</span>
|
||||
<span class="lang-es">Ver más cursos</span>
|
||||
<span class="lang-fr">Voir plus</span>
|
||||
<span class="lang-br">Veja mais</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-info-section">
|
||||
<div class="page-info-section-image-wrapper">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/page_info_homepage_4.webp" alt="Woman learning CRM tips with Pipedrive online courses ">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/page_info_homepage_4.webp">
|
||||
</div>
|
||||
<div class="page-info-section-text">
|
||||
<h3 class="page-info-section-title">
|
||||
<span class="lang-en">How to learn CRM tips with online courses</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Online-Kurse mit CRM-Tipps</span>
|
||||
<span class="lang-es">Cómo aprender consejos de CRM con cursos en línea</span>
|
||||
<span class="lang-fr">Des cours en vidéo pour se former au CRM</span>
|
||||
<span class="lang-br">Como aprender sobre CRMs com cursos online</span>
|
||||
</h3>
|
||||
<div class="page-info-section-description">
|
||||
<span class="lang-en">
|
||||
Pipedrive’s Academy courses are packed with quick, clear videos to help you make the most of our CRM tool.<br>
|
||||
Access detailed video tutorials for Pipedrive features and add-ons such as Campaigns and Automations, or find more general videos to polish your sales management.<br>
|
||||
Watch webinars with sales and marketing thought leaders about how to take your talents to the next level.<br>
|
||||
We’ve designed our videos to help everyone, from Pipedrive CRM platform beginners to seasoned sales pros. So, whether you’re just starting on your sales, marketing or CRM journey or want to refine your knowledge, you'll be able to find the right course for you.<br></span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
We’ve designed our videos to help everyone, from Pipedrive CRM platform beginners to seasoned sales pros. So, whether you’re just starting on your sales, marketing or CRM journey or want to refine your knowledge, you'll be able to find the right course for you.
|
||||
</span>
|
||||
<span class="lang-de">
|
||||
Die Academy-Kurse von Pipedrive sind kurze, verständliche Videos, mit denen Sie alles aus Ihrem CRM-Tool herausholen.<br>
|
||||
Zugang zu detaillierten Video-Tutorials zu Pipedrive-Funktion und Add-ons wie Campaigns und Automations sowie allgemeinere Videos, mit denen Sie Ihr Vertriebsmanagement verbessern können.<br>
|
||||
Führende Stimmen aus Vertrieb und Marketing führen durch Webinare und erklären Ihnen, wie Sie Ihre Teammitglieder auf ein neues Level bringen.<br>
|
||||
Unsere Videos sind so konzipiert, dass Sie vom CRM-Anfänger bis hin zu erfahrenen Vertriebsprofis alle unterstützen. Ganz gleich, ob Sie am Anfang Ihrer Vertriebs-, Marketing- oder auch CRM-Reise stehen oder Ihr Wissen vertiefen wollen, es wird der richtige Kurs für Sie dabei sein.
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
Los cursos de la Academia Pipedrive están repletos de videos rápidos y claros para ayudarte a aprovechar al máximo nuestra herramienta de CRM.<br>
|
||||
Accede a detallados tutoriales en video para funciones y complementos de Pipedrive, como Campaigns y Automatizaciones, o encuentra videos más generales para pulir tu administración de ventas.<br>
|
||||
Mira seminarios web con líderes de opinión de ventas y marketing sobre cómo llevar tus talentos al siguiente nivel.<br>
|
||||
Diseñamos nuestros videos para ayudar a todos, desde los principiantes de la plataforma de CRM de Pipedrive hasta los experimentados profesionales de ventas. Entonces, ya sea que recién comiences tu recorrido de ventas, marketing o CRM o desees perfeccionar tus conocimientos, podrás encontrar el curso adecuado para ti.
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
L’Académie de Pipedrive vous propose une multitude de cours en vidéo vous expliquant de façon claire et concise comment utiliser votre CRM à son plein potentiel.<br>
|
||||
Consultez nos tutoriels vidéos approfondis sur les outils et les extensions de Pipedrive comme Campaigns et Automations, ou regardez des vidéos plus générales pour apprendre à optimiser votre gestion commerciale.<br>
|
||||
Visionnez des webinaires et apprenez à démultiplier l’efficacité de vos équipes auprès de leaders inspirants de la vente et du marketing.<br>
|
||||
Ces vidéos se destinent aux pros de la vente et aux responsables marketing, quel que soit leur niveau d’expérience ou leur secteur d’activité. Que cela soit pour acquérir les bases de la vente, du marketing digital et des logiciels CRM, ou pour approfondir votre expertise, nous avons le cours qu’il vous faut.
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
Os cursos da Academia do Pipedrive são repletos de vídeos curtos e diretos para ajudar você a aproveitar ao máximo nossa ferramenta de CRM.<br>
|
||||
Acesse tutoriais em vídeo detalhados sobre recursos e extensões do Pipedrive, como o Campaigns e as Automatizações ou encontre vídeos mais gerais para aprimorar sua gestão de vendas.<br>
|
||||
Assista a webinars com líderes de vendas e marketing sobre como explorar ainda mais os seus talentos.<br>
|
||||
Criamos nossos vídeos para ajudar a todos, desde iniciantes no CRM Pipedrive até profissionais de vendas experientes. Se você está apenas começando sua jornada de vendas, marketing ou CRM ou se deseja refinar seus conhecimentos, aqui você encontra o curso que está procurando.
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-info-section">
|
||||
<div class="page-info-section-image-wrapper">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/page_info_homepage_5.webp" alt="Man and a woman looking at Learn Pipedrive on the tablet.">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/page_info_homepage_5.webp">
|
||||
</div>
|
||||
<div class="page-info-section-text">
|
||||
<h3 class="page-info-section-title">
|
||||
<span class="lang-en">What can I find in Pipedrive Learn?</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Was bietet Pipedrive Learn?</span>
|
||||
<span class="lang-es">¿Qué puedo encontrar en Aprender con Pipedrive?</span>
|
||||
<span class="lang-fr">Que trouverez-vous dans Pipedrive Learn ?</span>
|
||||
<span class="lang-br">O que eu encontro no Aprenda com o Pipedrive?</span>
|
||||
</h3>
|
||||
<div class="page-info-section-description">
|
||||
<span class="lang-en">
|
||||
@ -157,10 +251,54 @@
|
||||
</ul>
|
||||
As well as much more!
|
||||
</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">
|
||||
Hier finden Sie alle unsere Online-Kurse und Produktleitfäden an einem Ort, sodass Sie keine wertvolle Zeit bei der Suche auf verschiedenen Plattformen verschwenden müssen.<br>
|
||||
Mit unseren detaillierten Tutorials lernen Sie:<br>
|
||||
<ul>
|
||||
<li>Wie Sie mit dem CRM von Pipedrive aus jedem Gespräch mit Kunden das Beste herausholen</li>
|
||||
<li>Wie Sie mit Einblicken in Pipedrive leicht lesbare Dashboards erstellen</li>
|
||||
<li>Tipps zur Pflege Ihrer Unternehmensprozesse und zur Erhöhung der Profitabilität</li>
|
||||
<li>Ratschläge zur Nutzung Ihres CRMs für erstklassigen Kundenservice</li>
|
||||
<li>Wie Sie mit unseren Campaigns Vorlagen attraktive Kampagnen erstellen</li>
|
||||
</ul>
|
||||
Und noch viel mehr!
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
Nuestros expertos han compilado todos nuestros cursos en línea y guías de productos en un solo lugar, por lo que no tienes que perder tu valioso tiempo buscando entre plataformas.<br>
|
||||
Con nuestros tutoriales detallados, puedes aprender lo siguiente:<br>
|
||||
<ul>
|
||||
<li>Cómo aprovechar al máximo cada interacción con el cliente con el CRM de Pipedrive</li>
|
||||
<li>Todo sobre cómo aprovechar los avances informativos cruciales para crear tableros fáciles de leer dentro de Pipedrive</li>
|
||||
<li>Consejos para cultivar tus procesos comerciales y aumentar la rentabilidad como pequeña empresa</li>
|
||||
<li>Consejos para perfeccionar tu CRM para ofrecer una atención al cliente de primera clase</li>
|
||||
<li>Cómo crear impresionantes campañas de marketing con nuestras plantillas de Campaigns</li>
|
||||
</ul>
|
||||
¡Y muchas cosas más!
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
Nos spécialistes ont compilé l’intégralité de nos démos, cours et formations en ligne dans cet espace unique afin de vous faire gagner un temps précieux au moment de rechercher des renseignements.<br>
|
||||
Dans ces tutoriels détaillés, vous découvrirez :<br>
|
||||
<ul>
|
||||
<li>comment faire fructifier chaque interaction client avec le CRM Pipedrive</li>
|
||||
<li>comment exploiter vos données clients à l’aide de rapports analytiques et de tableaux de bord</li>
|
||||
<li>des astuces pour renforcer vos processus commerciaux et dégager davantage de recettes pour votre PME ou TPE</li>
|
||||
<li>des conseils pour affiner votre GRC et perfectionner votre service client</li>
|
||||
<li>des outils pour créer de superbes campagnes emailing grâce aux modèles de notre extension Campaigns.</li>
|
||||
</ul>
|
||||
... Et bien plus encore !
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
Nossos especialistas compilaram todos os nossos cursos e guias de produto online em um só lugar para que você não precise gastar tempo fazendo buscas em diferentes plataformas.<br>
|
||||
Com nossos tutoriais aprofundados, você vai aprender a:<br>
|
||||
<ul>
|
||||
<li>Aproveitar ao máximo cada interação de clientes com o CRM Pipedrive</li>
|
||||
<li>Usar todos os insights cruciais para criar painéis dentro do Pipedrive</li>
|
||||
<li>Dicas para cultivar os processos da sua equipe e a rentabilidade sendo uma empresa pequena</li>
|
||||
<li>Conselhos sobre como refinar seu CRM para oferecer um suporte ao cliente de qualidade</li>
|
||||
<li>Criar campanhas de marketing incríveis com os modelos do Campaigns</li>
|
||||
</ul>
|
||||
E muito mais!
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
<section class="courses-section">
|
||||
<h3 class="courses-title strong">
|
||||
<span class="lang-en">Don’t know where to start? We recommend these</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Sie wissen nicht, wo Sie anfangen sollen? Wir empfehlen</span>
|
||||
<span class="lang-es">¿No sabe por dónde empezar? Le recomendamos</span>
|
||||
<span class="lang-fr">Vous ne savez pas par où commencer ? Voici nos recommandations.</span>
|
||||
<span class="lang-br">Não sabe por onde começar? Recomendamos estes</span>
|
||||
</h3>
|
||||
{% assign any_course = false %}
|
||||
<div class="courses-list row">
|
||||
|
||||
@ -7,24 +7,24 @@
|
||||
<div class="opinions container width-limit">
|
||||
<h2 class="opinions-title strong">
|
||||
<span class="lang-en">Trusted by over 100,000 sales teams around the world</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Mehr als 100.000 Vertriebsteams weltweit vertrauen Pipedrive!</span>
|
||||
<span class="lang-es">Tenemos la confianza de más de 100,000 equipos de ventas en todo el mundo</span>
|
||||
<span class="lang-fr">Le CRM de référence pour plus de 100 000 équipes dans le monde</span>
|
||||
<span class="lang-br">Mais de 100 000 equipes de vendas em todo o mundo confiam em nós</span>
|
||||
</h2>
|
||||
<div class="opinions-list row">
|
||||
<div class="opinion-card col-12 col-md-4">
|
||||
<div class="opinion-text">
|
||||
{{ quotes_svg }}
|
||||
<span class="lang-en">It has made our sales department more effective and efficient. It’s easy to use and it’s constantly updated. It’s easy to use and it’s constantly updated.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-en">It has made our sales department more effective and efficient. It’s easy to use and it’s constantly updated. It’s easy to use and it’s constantly updated.</span>
|
||||
<span class="lang-de">Unsere Vertriebsabteilung ist nun effektiver und effizienter. Pipedrive ist benutzerfreundlich und wird regelmäßig aktualisiert.</span>
|
||||
<span class="lang-es">Ha hecho que nuestro departamento de ventas sea más eficaz y eficiente. Es fácil de usar y se actualiza constantemente. Es fácil de usar y se actualiza constantemente</span>
|
||||
<span class="lang-fr">Avec Pipedrive, nos équipes commerciales ont gagné en efficacité et en productivité. L’outil est facile à utiliser et constamment mis à jour.</span>
|
||||
<span class="lang-br">Nosso departamento de vendas se tornou muito mais eficiente. O Pipedrive é muito fácil de usar e é atualizado constantemente.</span>
|
||||
</div>
|
||||
<div class="opinion-person">
|
||||
<div class="opinion-person-image-wrapper">
|
||||
<img class="opinion-person-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/opinions-1.webp" alt="Ana Rinck, Operations Manager, BAKERpedia">
|
||||
<img class="opinion-person-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/opinions-1.webp">
|
||||
</div>
|
||||
<div class="body-s opinion-person-info">
|
||||
<div class="opinion-person-info-name">
|
||||
@ -32,10 +32,10 @@
|
||||
</div>
|
||||
<div class="opinion-person-info-title">
|
||||
<span class="lang-en">Operations Manager</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Betriebsleiter</span>
|
||||
<span class="lang-es">Director de operaciones</span>
|
||||
<span class="lang-fr">Responsable des opérations</span>
|
||||
<span class="lang-br">Gerente de operações</span>
|
||||
<span>, BAKERpedia</span>
|
||||
</div>
|
||||
</div>
|
||||
@ -46,14 +46,14 @@
|
||||
<div class="opinion-text">
|
||||
{{ quotes_svg }}
|
||||
<span class="lang-en">Easy to use, reasonably priced, and ensures I don’t drop the ball on following up with my leads!</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Benutzerfreundlichkeit, angemessener Preis und es sorgt dafür, dass ich bei meinen Leads am Ball bleibe.</span>
|
||||
<span class="lang-es">¡Fácil de usar, a un precio razonable y me asegura que no perderé la oportunidad de darle seguimiento a mis prospectos!</span>
|
||||
<span class="lang-fr">Facile à prendre en main, bon marché, avec ce logiciel CRM, je suis sûre de ne jamais oublier une seule relance avec mes prospects !</span>
|
||||
<span class="lang-br">Fácil de usar, preço justo e garante que eu nunca me esqueça de fazer o follow up com os leads!</span>
|
||||
</div>
|
||||
<div class="opinion-person">
|
||||
<div class="opinion-person-image-wrapper">
|
||||
<img class="opinion-person-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/opinions-2.webp" alt="Christine Luken, Author and Speaker, Financial Lifeguard">
|
||||
<img class="opinion-person-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/opinions-2.webp">
|
||||
</div>
|
||||
<div class="body-s opinion-person-info">
|
||||
<div class="opinion-person-info-name">
|
||||
@ -61,10 +61,10 @@
|
||||
</div>
|
||||
<div class="opinion-person-info-title">
|
||||
<span class="lang-en">Author and Speaker</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Autor und Redner</span>
|
||||
<span class="lang-es">Autor y conferenciante</span>
|
||||
<span class="lang-fr">Auteur(e) et conférencier(e)</span>
|
||||
<span class="lang-br">Autor(a) e palestrante</span>
|
||||
<span>, Financial Lifeguard</span>
|
||||
</div>
|
||||
</div>
|
||||
@ -75,15 +75,15 @@
|
||||
<div class="opinion-text">
|
||||
{{ quotes_svg }}
|
||||
<span class="lang-en">The best thing we love about Pipedrive is it does two-way sync with Google Apps. It has helped us to better organise and keep everything on track.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Was wir an Pipedrive am meisten lieben, ist die 2-Wege-Synchronisation mit Google Apps. Dadurch können wir uns besser organisieren und den Überblick behalten.</span>
|
||||
<span class="lang-es">Lo que más nos encanta de Pipedrive es que se sincroniza bidireccionalmente con Google Apps. Nos ha ayudado a organizarnos mejor y a mantener todo en orden.</span>
|
||||
<span class="lang-fr">Ce que Pipedrive fait de mieux à notre avis, c’est la synchronisation bidirectionnelle avec les applis Google. Cela nous a permis de mieux nous organiser et de tenir notre feuille de route.</span>
|
||||
<span class="lang-br">A coisa que mais gostamos no Pipedrive é a sincronização bilateral com os aplicativos do Google. Isso nos ajudou na organização e no ritmo de trabalho.</span>
|
||||
</div>
|
||||
<div class="opinion-person">
|
||||
<div class="opinion-person-image-wrapper">
|
||||
<div class="opinion-person-image-wrapper">
|
||||
<img class="opinion-person-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/opinions-3.webp" alt="Nirmal Gyanwali, Managing Director, Nirmal Web Studio">
|
||||
<img class="opinion-person-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/opinions-3.webp">
|
||||
</div>
|
||||
</div>
|
||||
<div class="body-s opinion-person-info">
|
||||
@ -92,10 +92,10 @@
|
||||
</div>
|
||||
<div class="opinion-person-info-title">
|
||||
<span class="lang-en">Managing Director</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Managing Director</span>
|
||||
<span class="lang-es">Director general</span>
|
||||
<span class="lang-fr">Directeu(rice) général(e)</span>
|
||||
<span class="lang-br">Diretor(a) administrativo(a)</span>
|
||||
<span>, Nirmal Web Studio</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -5,39 +5,39 @@
|
||||
<div class="container">
|
||||
<h2 class="account-form-title">
|
||||
<span class="lang-en">Please fill out your name</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Bitte geben Sie Ihren Namen an</span>
|
||||
<span class="lang-es">Por favor escribe tu nombre</span>
|
||||
<span class="lang-fr">Veuillez indiquer votre nom</span>
|
||||
<span class="lang-br">Seu nome</span>
|
||||
</h2>
|
||||
<div class="row">
|
||||
<div class="col-xs-12 np-account-form">
|
||||
<div class="np-form-field">
|
||||
<label class="account-label" for="first-name">
|
||||
<span class="lang-en">First name</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span> *
|
||||
<span class="lang-de">Vorname</span>
|
||||
<span class="lang-es">Nombre de pila</span>
|
||||
<span class="lang-fr">Prénom</span>
|
||||
<span class="lang-br">Nome</span> *
|
||||
</label>
|
||||
<input class="np-input" id="first-name" autocomplete="off">
|
||||
</div>
|
||||
<div class="np-form-field">
|
||||
<label class="account-label" for="last-name">
|
||||
<span class="lang-en">Last name</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span> *
|
||||
<span class="lang-de">Nachname</span>
|
||||
<span class="lang-es">Apellidos</span>
|
||||
<span class="lang-fr">Nom de famille</span>
|
||||
<span class="lang-br">Sobrenome</span> *
|
||||
</label>
|
||||
<input class="np-input" id="last-name" autocomplete="off">
|
||||
</div>
|
||||
<button type="submit" class="np-button np-button-big np-button-large-font np-form-action">
|
||||
<span class="lang-en">Save</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Speichern</span>
|
||||
<span class="lang-es">Guardar</span>
|
||||
<span class="lang-fr">Sauvegarder</span>
|
||||
<span class="lang-br">Salvar</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -7,39 +7,39 @@
|
||||
<div class="container">
|
||||
<h1 class="account-form-title">
|
||||
<span class="lang-en">My profile</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Mein Profil</span>
|
||||
<span class="lang-es">Mi perfil</span>
|
||||
<span class="lang-fr">Mon profil</span>
|
||||
<span class="lang-br">Meu perfil</span>
|
||||
</h1>
|
||||
<div class="row">
|
||||
<div class="col-xs-12 np-account-form">
|
||||
<div class="np-form-field">
|
||||
<label class="account-label" for="first-name">
|
||||
<span class="lang-en">First name</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span> *
|
||||
<span class="lang-de">Vorname</span>
|
||||
<span class="lang-es">Nombre de pila</span>
|
||||
<span class="lang-fr">Prénom</span>
|
||||
<span class="lang-br">Nome</span> *
|
||||
</label>
|
||||
<input class="np-input" id="first-name" autocomplete="off">
|
||||
</div>
|
||||
<div class="np-form-field">
|
||||
<label class="account-label" for="last-name">
|
||||
<span class="lang-en">Last name</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span> *
|
||||
<span class="lang-de">Nachname</span>
|
||||
<span class="lang-es">Apellidos</span>
|
||||
<span class="lang-fr">Nom de famille</span>
|
||||
<span class="lang-br">Sobrenome</span> *
|
||||
</label>
|
||||
<input class="np-input" id="last-name" autocomplete="off">
|
||||
</div>
|
||||
<button type="submit" class="np-button np-button-big np-button-large-font np-form-action">
|
||||
<span class="lang-en">Save profile</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Profil speichern</span>
|
||||
<span class="lang-es">Guardar perfil</span>
|
||||
<span class="lang-fr">Sauvegarder le profil</span>
|
||||
<span class="lang-br">Salvar perfil</span>
|
||||
</button>
|
||||
{% include "account_deletion" %}
|
||||
</div>
|
||||
|
||||
@ -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 %}
|
||||
|
||||
<div class="courses container width-limit">
|
||||
{% 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 %}
|
||||
<section class="courses-section" item-categories="{{ category_uuid }}">
|
||||
<div class="courses-section-header">
|
||||
<h3 class="courses-title strong">
|
||||
{{ categories_names | slice: y }}
|
||||
</h3>
|
||||
<div class="courses-section-button" onclick="expandCategory('{{ category_uuid }}')">
|
||||
<span class="courses-section-button-hide">
|
||||
<span class="lang-en">Show less</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
</span>
|
||||
<span class="courses-section-button-expand">
|
||||
<span class="lang-en">View all</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span> <i class="fas fa-arrow-right"></i>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="courses-list row">
|
||||
{% 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 %}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% if number_of_videos <= 3 %}
|
||||
<style>
|
||||
{% if number_of_videos == 1 %}
|
||||
.courses-section[item-categories="{{ category_uuid }}"] .courses-section-button {
|
||||
display: none;
|
||||
}
|
||||
{% elsif number_of_videos == 2 %}
|
||||
@media only screen and (min-width: 768px) {
|
||||
.courses-section[item-categories="{{ category_uuid }}"] .courses-section-button {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
{% else %}
|
||||
@media only screen and (min-width: 1200px) {
|
||||
.courses-section[item-categories="{{ category_uuid }}"] .courses-section-button {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
{% endif %}
|
||||
</style>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.courses-title {
|
||||
padding-bottom: 40px;
|
||||
padding-top: 40px;
|
||||
}
|
||||
.courses-section:not(:last-of-type) .courses-list {
|
||||
border-bottom: 1px solid #E1E1FF;
|
||||
}
|
||||
.courses-section-filtered .courses-list {
|
||||
border-bottom: none !important;
|
||||
}
|
||||
.courses-list {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.courses-section-filtered {
|
||||
margin-top: 40px;
|
||||
}
|
||||
.courses-section-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.courses-section-filtered .courses-section-header {
|
||||
display: none;
|
||||
}
|
||||
.courses-section-button {
|
||||
color: #0070D6;
|
||||
cursor: pointer;
|
||||
}
|
||||
.courses-section-button-hide {
|
||||
display: none;
|
||||
}
|
||||
.courses-section.courses-section-expanded .courses-section-button-hide {
|
||||
display: block;
|
||||
}
|
||||
.courses-section.courses-section-expanded .courses-section-button-expand {
|
||||
display: none;
|
||||
}
|
||||
@media only screen and (max-width: 767px) {
|
||||
.courses-section:not(.courses-section-expanded) .course-card:not(:first-child) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 768px) {
|
||||
.courses-list > div {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
.courses-list {
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 768px) and (max-width: 1199px) {
|
||||
.courses-section:not(.courses-section-expanded) .course-card:nth-child(n+3) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 1200px) {
|
||||
.courses-section:not(.courses-section-expanded) .course-card:nth-child(n+4) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
window.addEventListener('DOMContentLoaded', () => {
|
||||
document.querySelectorAll('.course-card-description').forEach((x) => {
|
||||
$clamp(x, {clamp: 5});
|
||||
})
|
||||
});
|
||||
|
||||
function expandCategory(category_uuid) {
|
||||
document.querySelector(`.courses-section[item-categories="${category_uuid}"]`).classList.toggle('courses-section-expanded');
|
||||
}
|
||||
</script>
|
||||
@ -0,0 +1,103 @@
|
||||
{% if uuids.size > 0 %}
|
||||
<div class="courses-filter-hidden np-hidden">
|
||||
<div class="courses-filter-item courses-filter-item-active body-s strong" onclick="filterItems(this)" category-uuid="ALL">
|
||||
<span class="lang-en">All topics</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
</div>
|
||||
{% for x in (1..uuids.size) %}
|
||||
{% assign y = x | minus: 1 %}
|
||||
<div class="courses-filter-item body-s strong" onclick="filterItems(this)" category-uuid="{{ uuids | slice: y }}">
|
||||
{{ names | slice: y }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
<div class="courses-filter"></div>
|
||||
{% endif %}
|
||||
|
||||
<style>
|
||||
.courses-filter {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
margin-top: 40px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.courses-filter-item {
|
||||
padding: 10px 20px;
|
||||
border: 2px solid #E4E6E9;
|
||||
border-radius: 300px;
|
||||
color: #656E7A;
|
||||
white-space: nowrap;
|
||||
cursor: pointer;
|
||||
}
|
||||
.courses-filter-item:not(.courses-filter-item-active):hover {
|
||||
color: var(--black-digital);
|
||||
}
|
||||
.courses-filter-item-active {
|
||||
color: var(--green);
|
||||
border: 2px solid var(--green);
|
||||
cursor: default;
|
||||
}
|
||||
.category-hidden {
|
||||
display: none !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
addEventListener('DOMContentLoaded', () => {
|
||||
const categoriesOrder = ['ALL',
|
||||
'251e90cf-758d-4f98-9256-9d1d40e24872',
|
||||
'b3c41203-7160-4d6f-bd77-5861bdddcfcd',
|
||||
'ca378022-dcac-444b-af34-64fdd6527faa',
|
||||
'0c4cda69-4ea9-4ad9-b279-19233daf043b',
|
||||
'389df920-414a-4657-9aa7-f6521f26bf3c',
|
||||
'c0cac114-466c-4952-85e9-aa19023999fa',
|
||||
'46f1a20a-6948-44eb-9b4a-1f924bbe46c4',
|
||||
'c082a8e4-00d3-4687-8b84-3dd1bb6c0c9e',
|
||||
'8604578e-22c9-4886-9943-43b1e2957615',
|
||||
'c53e5d73-dbd7-479b-ad7a-4e77a41cf62f',
|
||||
'49a29fce-cdd6-4af4-903a-0d1b58e1194a',
|
||||
'59e5408f-6538-4581-ac4f-5cfbcfa1c29a'
|
||||
]
|
||||
let filtersWrapper = document.querySelector('.courses-filter');
|
||||
categoriesOrder.forEach(category => {
|
||||
let filter = document.querySelector(`.courses-filter-item[category-uuid="${category}"]`)
|
||||
if (filter)
|
||||
filtersWrapper.appendChild(filter);
|
||||
});
|
||||
document.querySelectorAll('.courses-filter-hidden .courses-filter-item').forEach(filter => {
|
||||
filtersWrapper.appendChild(filter);
|
||||
});
|
||||
});
|
||||
|
||||
let previousFilter = window.sessionStorage.getItem('last-selected-video-filter');
|
||||
if (previousFilter) {
|
||||
addEventListener('DOMContentLoaded', () => {
|
||||
document.querySelector(`.courses-filter-item[category-uuid="${previousFilter}"]`)?.click();
|
||||
});
|
||||
}
|
||||
|
||||
function filterItems(element) {
|
||||
if (!element.classList.contains(('courses-filter-item-active'))) {
|
||||
document.querySelector('.courses-filter-item-active').classList.remove('courses-filter-item-active');
|
||||
element.classList.add('courses-filter-item-active');
|
||||
let selectedCategoryUUID = element.getAttribute('category-uuid');
|
||||
document.querySelectorAll('.courses-section-expanded').forEach(x => {x.classList.remove('courses-section-expanded')});
|
||||
document.querySelectorAll('.courses-section-filtered').forEach(x => {x.classList.remove('courses-section-filtered')});
|
||||
document.querySelectorAll('[item-categories]').forEach(x => {x.classList.remove('category-hidden')});
|
||||
if (selectedCategoryUUID !== 'ALL') {
|
||||
document.querySelectorAll(".courses-section").forEach(x => {
|
||||
if (x.getAttribute('item-categories') === selectedCategoryUUID) {
|
||||
x.classList.add('courses-section-expanded');
|
||||
x.classList.add('courses-section-filtered');
|
||||
} else {
|
||||
x.classList.add('category-hidden');
|
||||
}
|
||||
});
|
||||
}
|
||||
window.sessionStorage.setItem('last-selected-video-filter', selectedCategoryUUID);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
@ -2,11 +2,11 @@
|
||||
<div class="video-tutorial container width-limit">
|
||||
<div class="video-return">
|
||||
<a href="/app/video-tutorials">
|
||||
« <span class="lang-en">Back to all videos</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-en">« Back to all videos</span>
|
||||
<span class="lang-de">« Zurück zu allen Videos</span>
|
||||
<span class="lang-es">« Volver a todos los vídeos</span>
|
||||
<span class="lang-fr">« Retour à l'ensemble des vidéos</span>
|
||||
<span class="lang-br">« Voltar a todos os vídeos</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="row video-tutorial-body">
|
||||
@ -14,20 +14,20 @@
|
||||
<div class="video-player">
|
||||
{{ course.promo_video_embed_url }}
|
||||
</div>
|
||||
<h1 class="video-title">
|
||||
<h4 class="video-title">
|
||||
{{ course.name }}
|
||||
</h1>
|
||||
</h4>
|
||||
<div class="video-description">
|
||||
{{ course.full_description }}
|
||||
{{ course.full_description | strip_html }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="video-suggested col-12 col-md-4">
|
||||
<div class="video-suggested-title strong">
|
||||
<span class="lang-en">Suggested</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Empfohlen</span>
|
||||
<span class="lang-es">Sugerencia</span>
|
||||
<span class="lang-fr">Suggestion :</span>
|
||||
<span class="lang-br">Sugerido</span>
|
||||
</div>
|
||||
<div class="video-suggested-list-hidden np-hidden">
|
||||
{% assign course_cateogries = course.categories | map: 'id' | join: '|' %}
|
||||
@ -37,7 +37,7 @@
|
||||
{% if course_cateogries contains suggested_course_category.id %}
|
||||
<a class="video-suggested-course" href="{% route course, id: suggested_course.id %}">
|
||||
<div class="video-suggested-course-image-wrapper">
|
||||
<img class="video-suggested-course-image" img-src="{{ suggested_course.image_url }}" alt="Learn Pipedrive - {{ suggested_course.name }}">
|
||||
<img class="video-suggested-course-image" img-src="{{ suggested_course.image_url }}" alt="{{ suggested_course.name }}">
|
||||
</div>
|
||||
<div class="video-suggested-course-info">
|
||||
<div class="video-suggested-course-name strong">
|
||||
@ -176,7 +176,7 @@
|
||||
suggestedWrapper.parentElement.remove();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
addEventListener("DOMContentLoaded", () => {
|
||||
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');
|
||||
|
||||
@ -24,17 +24,17 @@
|
||||
<div class="courses-section-button" onclick="this.parentNode.parentNode.classList.toggle('courses-section-expanded')">
|
||||
<span class="courses-section-button-hide">
|
||||
<span class="lang-en">Show less</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Weniger anzeigen</span>
|
||||
<span class="lang-es">Mostrar menos</span>
|
||||
<span class="lang-fr">Montrer moins</span>
|
||||
<span class="lang-br">Mostrar menos</span>
|
||||
</span>
|
||||
<span class="courses-section-button-expand">
|
||||
<span class="lang-en">View all</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span> <i class="fas fa-arrow-right"></i>
|
||||
<span class="lang-de">Alle anzeigen</span>
|
||||
<span class="lang-es">Ver todos</span>
|
||||
<span class="lang-fr">Tout afficher</span>
|
||||
<span class="lang-br">Ver tudo</span> <i class="fas fa-arrow-right"></i>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -11,18 +11,18 @@
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">What is CRM training?</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Was ist eine CRM-Schulung?</span>
|
||||
<span class="lang-es">¿Qué es la formación CRM?</span>
|
||||
<span class="lang-fr">Qu'est-ce qu'une formation CRM ?</span>
|
||||
<span class="lang-br">O que é treinamento de CRM?</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">CRM training is any training course or tutorial – these days, typically an online course – that helps your sales force or customer support staff get the most out of your chosen CRM. These courses help you better understand a CRM’s features to develop more efficient, effective workflows, business processes and digital marketing. The idea is to equip your sales force with the skills they need to maximize revenue.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Eine CRM-Training ist eine Fortbildung oder ein Tutorium – heutzutage in der Regel ein Online-Kurs -, der Ihren Vertriebsmitarbeitern oder Kundenbetreuern hilft, das Beste aus dem gewählten CRM herauszuholen. Diese Kurse helfen Ihnen, die Funktionen eines CRM besser zu verstehen, um effizientere und effektivere Arbeitsabläufe, Geschäftsprozesse und digitales Marketing zu entwickeln. Ziel ist es, Ihre Vertriebsmitarbeiter mit den Fähigkeiten auszustatten, die sie benötigen, um den Umsatz zu maximieren.</span>
|
||||
<span class="lang-es">La formación en CRM es cualquier curso de formación o tutorial -hoy en día, normalmente un curso en línea- que ayuda a su fuerza de ventas o al personal de atención al cliente a sacar el máximo partido del CRM elegido. Estos cursos ayudan a comprender mejor las funciones de un CRM para desarrollar flujos de trabajo, procesos comerciales y marketing digital más eficientes y eficaces. La idea es dotar a su fuerza de ventas de las habilidades que necesitan para maximizar los ingresos.</span>
|
||||
<span class="lang-fr">Une formation CRM désigne tout cours de formation ou tutoriel – de nos jours, généralement un cours en ligne – qui aide votre force de vente ou votre personnel de support client à tirer le meilleur parti du CRM que vous avez choisi. Ces cours vous aident à mieux comprendre les fonctionnalités d'un CRM pour développer des flux de travail, des processus commerciaux et un marketing numérique plus efficaces et plus performants. L'idée consiste à doter votre force de vente des compétences dont elle a besoin pour maximiser vos recettes.</span>
|
||||
<span class="lang-br">Treinamento de CRM é qualquer curso de treinamento ou tutorial - hoje em dia, normalmente um curso online - que ajuda sua equipe de vendas ou de suporte ao cliente a aproveitar ao máximo o CRM escolhido. Estes cursos ajudam você a entender melhor as características de um CRM para desenvolver fluxos de trabalho, processos e marketing digital mais eficientes. A ideia é ajudar sua equipe de vendas com as habilidades necessárias para maximizar o faturamento.</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -34,18 +34,18 @@
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">How do I train people to use CRM?</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Wie schule ich meine Mitarbeiter im Umgang mit einem CRM?</span>
|
||||
<span class="lang-es">¿Cómo puedo capacitar a mi personal en el uso de CRM?</span>
|
||||
<span class="lang-fr">Comment former mon équipe à l'utilisation d'un CRM ?</span>
|
||||
<span class="lang-br">Como treinar pessoas para usar um CRM?</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">The best way to train your staff to use a <a href="https://www.pipedrive.com/en/features/crm-system">CRM system</a> is by providing online courses or tutorials specifically for that CRM. Training resources have come a long way – nowadays, your staff can complete interactive, self-paced courses explaining everything from the basics to a CRM’s more complex features. Many courses even include quizzes to test participants’ knowledge or offer different tutorials for different employees (e.g., salespeople vs. non-salespeople).</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Der beste Weg, Ihre Mitarbeiter in der Nutzung eines CRM-Systems zu schulen, ist die Bereitstellung von Online-Kursen oder Tutorials speziell für dieses CRM. Heutzutage können Ihre Mitarbeiter interaktive Kurse zum Selbststudium absolvieren, die alles von den Grundlagen bis hin zu den komplexeren Funktionen eines CRM-Systems erklären. Viele Kurse enthalten sogar Quizfragen, um das Wissen der Teilnehmer zu testen, oder bieten unterschiedliche Tutorials für verschiedene Mitarbeiter (z. B. für Vertriebsmitarbeiter und Nicht-Vertriebsmitarbeiter).</span>
|
||||
<span class="lang-es">La mejor forma de capacitar a tu personal en el uso de un sistema CRM es impartir cursos o tutoriales en línea específicos para ese CRM. Los recursos de capacitación han avanzado mucho: hoy en día, tu personal puede realizar cursos interactivos a su propio ritmo que explican todo, desde los conceptos básicos hasta las funciones más complejas de un CRM. Muchos cursos incluso incluyen cuestionarios para poner a prueba los conocimientos de los participantes u ofrecen tutoriales diferentes para diferentes tipos de empleados (por ejemplo, vendedores y no vendedores).</span>
|
||||
<span class="lang-fr">La meilleure façon de former votre équipe à l'utilisation d'un système de gestion de la relation client (CRM) est de lui proposer des cours en ligne ou des tutoriels portant spécifiquement sur votre CRM. Les ressources de formation ont beaucoup évolué. Aujourd'hui, chacun peut suivre à son rythme des cours interactifs, portant aussi bien sur les principes de base que sur des fonctionnalités CRM plus complexes. De nombreux cours incluent également des quiz pour tester les connaissances des participants ou proposent des tutoriels adaptés à chaque rôle (par exemple : vente, marketing, etc).</span>
|
||||
<span class="lang-br">A melhor maneira de treinar seus funcionários para usar um sistema de CRM é fornecendo cursos online ou tutoriais especificamente para esse CRM. Os recursos de treinamento estão muito mais completos agora - atualmente é possível fazer cursos interativos e autodidatas explicando tudo, desde as características básicas até as mais complexas de um CRM. Muitos cursos incluem até mesmo testes para validar o conhecimento dos participantes ou oferecem diferentes tutoriais para diferentes funcionários (por exemplo, vendedores vs. não vendedores).</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -57,10 +57,10 @@
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">What concepts are in CRM training?</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Welche Konzepte sind in CRM-Schulungen enthalten?</span>
|
||||
<span class="lang-es">¿Qué conceptos hay en la formación CRM?</span>
|
||||
<span class="lang-fr">Quels sont les concepts de la formation CRM ?</span>
|
||||
<span class="lang-br">Quais são os conceitos contidos no treinamento de CRM?</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
@ -90,18 +90,18 @@
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">What is a CRM course?</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Was ist ein CRM-Kurs?</span>
|
||||
<span class="lang-es">¿Qué es un curso de CRM?</span>
|
||||
<span class="lang-fr">Qu'est-ce qu'un cours de CRM ?</span>
|
||||
<span class="lang-br">O que é um curso de CRM?</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">A CRM course is a training course designed to show people how to use and get the most out of <a href="https://www.pipedrive.com/en/features/customer-relationship-management-software">customer relationship management software</a>. Typically, a course begins by introducing the fundamentals of the software before looking in more detail at particular features. CRM courses also usually offer tutorials on optimizing different parts of your company’s sales process and maximizing revenue.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Ein CRM-Kurs ist eine Fortbildung, die den Teilnehmern zeigt, wie sie die <a href="https://www.pipedrive.com/en/features/customer-relationship-management-software">Software für das Kundenbeziehungsmanagement</a> nutzen und optimal einsetzen können. In der Regel beginnt ein Kurs mit einer Einführung in die Grundlagen der Software, bevor bestimmte Funktionen im Detail behandelt werden. CRM-Kurse bieten in der Regel auch Anleitungen zur Optimierung verschiedener Teile des Vertriebsprozesses Ihres Unternehmens und zur Maximierung der Einnahmen.</span>
|
||||
<span class="lang-es">Un curso de CRM es un curso de formación diseñado para mostrar a los usuarios cómo utilizar y sacar el máximo partido del <a href="https://www.pipedrive.com/en/features/customer-relationship-management-software">software de gestión de las relaciones con los clientes</a>. Normalmente, un curso comienza con una introducción a los fundamentos del software antes de profundizar en determinadas funciones. Los cursos de CRM también suelen ofrecer tutoriales sobre cómo optimizar diferentes partes del proceso de ventas de la empresa y maximizar los ingresos.</span>
|
||||
<span class="lang-fr">Un cours sur le CRM est un cours de formation conçu pour apprendre à utiliser et tirer le meilleur parti <a href="https://www.pipedrive.com/en/features/customer-relationship-management-software">d'un logiciel de gestion de la relation client</a>. En général, un cours commence par présenter les principes fondamentaux du logiciel avant d'examiner plus en détail certaines fonctionnalités. Les cours sur les CRM proposent aussi généralement des tutoriels sur l'optimisation des différentes parties du processus de vente de votre entreprise et la maximisation des revenus.</span>
|
||||
<span class="lang-br">Um curso de CRM é um curso de treinamento projetado para mostrar como usar e obter o máximo do <a href="https://www.pipedrive.com/en/features/customer-relationship-management-software">software CRM</a>. Tipicamente, um curso começa com a introdução dos fundamentos do software antes de analisar características particulares em mais detalhe. Os cursos de CRM geralmente oferecem tutoriais sobre como otimizar diferentes partes do processo de vendas de sua empresa e maximizar a receita.</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -113,18 +113,18 @@
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">What are the best CRM courses?</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Was sind die besten CRM-Kurse?</span>
|
||||
<span class="lang-es">¿Cuáles son los mejores cursos de CRM?</span>
|
||||
<span class="lang-fr">Quels sont les meilleurs cours sur les CRM ?</span>
|
||||
<span class="lang-br">Quais são os melhores cursos de CRM?</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">The best CRM courses are those that best suit your company. A training course should show your staff how to master the basic features of the CRM before looking at add-ons and other tools. Therefore, the course should offer a range of lessons to suit each role – it’s no good making your customer support staff watch in-depth videos on optimizing the <a href="https://www.pipedrive.com/en/blog/sales-process">sales process</a> if they won’t ever do these tasks.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Die besten CRM-Kurse sind diejenigen, die am besten zu Ihrem Unternehmen passen. Eine Schulung sollte Ihren Mitarbeitern die grundlegenden Funktionen des CRM nahebringen, bevor sie sich mit Add-ons und anderen Tools befassen. Daher sollte der Kurs eine Reihe von Lektionen anbieten, die für jede Rolle geeignet sind – es bringt nichts, wenn Sie Ihren Mitarbeitern im Kundendienst ausführliche Videos über die Optimierung des <a href="https://www.pipedrive.com/en/blog/sales-process">Verkaufsprozesses</a> zeigen, wenn sie diese Aufgaben nie ausführen werden.</span>
|
||||
<span class="lang-es">Los mejores cursos de CRM son los que mejor se adaptan a su empresa. Un curso de formación debe mostrar a su personal cómo dominar las funciones básicas del CRM antes de examinar los complementos y otras herramientas. Por lo tanto, el curso debe ofrecer una serie de lecciones que se adapten a cada función: no sirve de nada hacer que el personal de atención al cliente vea vídeos en profundidad sobre la optimización del <a href="https://www.pipedrive.com/en/blog/sales-process">proceso de ventas</a> si nunca van a realizar estas tareas.</span>
|
||||
<span class="lang-fr">Les meilleures formations CRM sont celles qui conviennent le mieux à votre entreprise. Un cours de formation doit montrer à votre personnel comment maîtriser les fonctionnalités de base du CRM avant d'aborder les modules complémentaires et autres outils. Par conséquent, le cours doit offrir une gamme de leçons adaptées à chaque rôle – il ne sert à rien de faire regarder à vos agents de support client des vidéos approfondies sur l'optimisation du <a href="https://www.pipedrive.com/en/blog/sales-process">processus de vente</a> si cela n'a aucun rapport avec leurs tâches.</span>
|
||||
<span class="lang-br">Os melhores cursos de CRM são aqueles que melhor se adaptam à sua empresa. Um curso de treinamento deve mostrar aos seus funcionários como dominar as características básicas do CRM antes de analisar extensões e outras ferramentas. Portanto, o curso deve oferecer uma série de lições para se adequar a cada função - não adianta fazer com que sua equipe de suporte ao cliente assista a vídeos detalhados sobre a otimização do <a href="https://www.pipedrive.com/en/blog/sales-process">processo de vendas</a> se eles nunca irão realizar estas tarefas.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
<div class="courses-filter-hidden np-hidden">
|
||||
<div class="courses-filter-item courses-filter-item-active body-s strong" onclick="filterItems(this)" category-uuid="ALL">
|
||||
<span class="lang-en">All topics</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Alle Themen</span>
|
||||
<span class="lang-es">Todos los temas</span>
|
||||
<span class="lang-fr">Tous les thèmes</span>
|
||||
<span class="lang-br">Todos os tópicos</span>
|
||||
</div>
|
||||
{% for x in (1..uuids.size) %}
|
||||
{% assign y = x | minus: 1 %}
|
||||
|
||||
@ -2,41 +2,57 @@
|
||||
<div class="page-info width-limit">
|
||||
<div class="page-info-section">
|
||||
<div class="page-info-section-image-wrapper">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/page_info_video_tutorial_1.png" alt="Watch Pipedrive crm courses and sales training comfortably">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/page_info_video_tutorial_1.png">
|
||||
</div>
|
||||
<div class="page-info-section-text">
|
||||
<h3 class="page-info-section-title">
|
||||
<span class="lang-en">Watch CRM courses and sales training videos</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">CRM-Kurse und Vertriebsschulungsvideos ansehen</span>
|
||||
<span class="lang-es">Ver cursos de CRM y vídeos de formación en ventas</span>
|
||||
<span class="lang-fr">Regardez des cours sur le CRM et des vidéos de formation à la vente</span>
|
||||
<span class="lang-br">Assista aos cursos de CRM e aos vídeos de treinamento de vendas</span>
|
||||
</h3>
|
||||
<div class="page-info-section-description">
|
||||
<span class="lang-en">
|
||||
In this section, we’ve gathered insightful, in-depth video tutorials and detailed multi-part training programs for different types of learners and sales teams.<br>
|
||||
Learn the fundamentals of our CRM software, get handy tips on how to keep your sales force winning leads and closing deals and find out how to maximize revenue along the sales process.<br>
|
||||
We’ll help bring your team members up to speed with detailed product demos of our CRM platform and talk you through various software features, empowering you to improve all stages of your sales process.
|
||||
We’ll help bring your team members up to speed with detailed product demos of our CRM platform and talk you through various software features, empowering you to improve all stages of your sales process.<br>
|
||||
</span>
|
||||
<span class="lang-de">
|
||||
In diesem Abschnitt haben wir aufschlussreiche, ausführliche Video-Tutorials und detaillierte, mehrteilige Schulungsprogramme für verschiedene Arten von Lernenden und Vertriebsteams zusammengestellt.<br>
|
||||
Lernen Sie die Grundlagen unserer CRM-Software kennen, erhalten Sie praktische Tipps, wie Ihre Vertriebsmitarbeiter Leads gewinnen und Geschäfte abschließen können, und erfahren Sie, wie Sie den Umsatz im Vertriebsprozess maximieren können.<br>
|
||||
Wir bringen Ihre Teammitglieder mit detaillierten Produktdemos unserer CRM-Plattform auf den neuesten Stand und erläutern Ihnen verschiedene Softwarefunktionen, mit denen Sie alle Phasen Ihres Vertriebsprozesses verbessern können.<br>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
En esta sección, hemos reunido tutoriales en vídeo detallados y detallados y programas de formación en varias partes para diferentes tipos de alumnos y equipos de ventas.<br>
|
||||
Aprenda los fundamentos de nuestro software CRM, obtenga consejos prácticos sobre cómo mantener a su personal de ventas ganando clientes potenciales y cerrando acuerdos y descubra cómo maximizar los ingresos a lo largo del proceso de ventas.<br>
|
||||
Le ayudaremos a poner al día a los miembros de su equipo con demostraciones detalladas de nuestra plataforma CRM y le explicaremos las distintas funciones del software, lo que le permitirá mejorar todas las fases de su proceso de ventas.<br>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
Dans cette section, nous avons rassemblé des tutoriels vidéo approfondis et des programmes de formation détaillés en plusieurs parties pour différents types d'apprenants et d'équipes de vente.<br>
|
||||
Familiarisez-vous avec les principes fondamentaux de notre logiciel CRM, obtenez des conseils pratiques pour que votre force de vente continue à gagner des prospects et à conclure des affaires, et découvrez comment maximiser les revenus tout au long du processus de vente.<br>
|
||||
Nous aiderons les membres de votre équipe à se mettre à niveau grâce à des démonstrations détaillées de notre plateforme CRM et nous vous présenterons les différentes fonctionnalités du logiciel, ce qui vous permettra d'améliorer chacune des étapes de votre processus de vente.<br>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
Nesta seção, reunimos tutoriais detalhados e aprofundados em vídeo e programas de treinamento em várias partes para diferentes tipos de alunos e equipes de vendas.<br>
|
||||
Aprenda os fundamentos de nosso software de CRM, veja dicas úteis sobre como ajudar sua equipe de vendas a continuar encontrando leads e fechando negócios e descubra como maximizar a receita ao longo do processo de vendas.<br>
|
||||
Vamos ajudar os membros da sua equipe com demos detalhadas dos produtos de nossa plataforma de CRM e apresentaremos vários recursos do software, capacitando você a melhorar todas as etapas de seu processo de vendas.<br>
|
||||
</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-info-section">
|
||||
<div class="page-info-section-image-wrapper">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/page_info_video_tutorial_2.webp" alt="Sales professionals watching a Pipedrive CRM tutorial video">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/page_info_video_tutorial_2.webp">
|
||||
</div>
|
||||
<div class="page-info-section-text">
|
||||
<h3 class="page-info-section-title">
|
||||
<span class="lang-en">How our CRM tutorial videos can help you with Pipedrive</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-en">The benefits of watching sales and CRM training videos</span>
|
||||
<span class="lang-de">Die Vorteile von Vertriebs- und CRM-Schulungsvideos</span>
|
||||
<span class="lang-es">Ventajas de ver vídeos de formación en ventas y CRM</span>
|
||||
<span class="lang-fr">Les avantages des vidéos de formation à la vente et au CRM</span>
|
||||
<span class="lang-br">Os benefícios de assistir aos vídeos de treinamento de vendas e CRM</span>
|
||||
</h3>
|
||||
<div class="page-info-section-description">
|
||||
<span class="lang-en">
|
||||
@ -47,25 +63,53 @@
|
||||
The overall purpose of a customer relationship management tool is to maximize revenue. A good online course should offer videos demonstrating how the CRM’s features can increase your sales team’s selling power.<br>
|
||||
Pipedrive offers users videos on many of its features. These features range from reporting tools that make sales results easier to predict – helping your sales team make educated decisions regarding your company’s revenue – to CRM integrations with third-party tools that can facilitate digital marketing or customer support.
|
||||
</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">
|
||||
Online-Fortbildungen und Video-Tutorials haben gegenüber anderen Arten von Schulungen mehrere Vorteile. Video-Tutorials bieten Flexibilität – Ihre Mitarbeiter können sie überall ansehen –, sie sind kosteneffizienter als die Organisation wiederholter persönlicher Fortbildungen und ansprechender als andere Materialien.<br>
|
||||
Darüber hinaus brechen unsere interaktiven Videos komplexe Informationen in kleinere Segmente auf, was besonders nützlich ist, wenn Sie neue Teammitglieder einweisen.<br>
|
||||
Video-Tutorials und Kurse sind besonders für Benutzer von CRM-Software hilfreich. CRMs können sehr komplex sein und bieten zahlreiche Tools, die den Vertriebsteams helfen, die Umsätze zu steigern.<br>
|
||||
Tutorial-Videos helfen dabei, die Funktionen der Software zu erklären, die Ihr Vertriebsteam verwendet. Video-Tutorials helfen Ihnen auch bei der Einarbeitung neuer Teammitglieder und sparen Ihnen Zeit bei der Einführung neuer Mitarbeiter in ein CRM. Darüber hinaus können Sie die Videos interaktiv gestalten, indem Sie sie während Sie gleichzeitig das Tool durchgehen.<br>
|
||||
Der Hauptzweck eines Kundenbeziehungsmanagement-Tools ist die Maximierung der Einnahmen. Ein guter Online-Kurs sollte Videos anbieten, die zeigen, wie die Funktionen des CRM die Verkaufskraft Ihres Vertriebsteams steigern können.<br>
|
||||
Pipedrive bietet Benutzern Videos zu vielen seiner Funktionen. Diese Funktionen reichen von Berichtstools, die die Vorhersage von Verkaufsergebnissen erleichtern und Ihrem Vertriebsteam helfen, fundierte Entscheidungen in Bezug auf den Umsatz Ihres Unternehmens zu treffen, bis hin zu CRM-Integrationen mit Tools von Drittanbietern, die das digitale Marketing und den Kundensupport erleichtern können.
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
Ver formación en línea o videotutoriales frente a otro tipo de material tiene varias ventajas. Los tutoriales en vídeo ofrecen flexibilidad (su personal puede verlos en cualquier lugar), son más rentables que organizar cursos presenciales repetidos y más atractivos que otros tipos de material.<br>
|
||||
Además, nuestros vídeos interactivos dividen la información compleja en fragmentos más pequeños, lo que resulta especialmente útil para mostrar a los nuevos miembros del equipo cómo se hacen las cosas.<br>
|
||||
Los CRM pueden ser complejos, con múltiples herramientas para ayudar a los equipos de ventas a aumentar los ingresos. Los vídeos tutoriales le ayudarán a explicar las funciones del software que utiliza su equipo de ventas. <br>
|
||||
Los tutoriales en vídeo también le ayudarán a incorporar nuevos miembros al equipo y pueden ahorrarle tiempo a la hora de introducir a los nuevos empleados en un CRM. <br>
|
||||
El objetivo general de una herramienta de gestión de relaciones con los clientes es maximizar los ingresos. Un buen curso en línea debe ofrecer vídeos que demuestren cómo las funciones del CRM pueden aumentar el poder de venta de su equipo de ventas.<br>
|
||||
Pipedrive ofrece a los usuarios vídeos sobre muchas de sus funciones. Estas funciones van desde herramientas de informes que hacen que los resultados de ventas sean más fáciles de predecir -ayudando a tu equipo de ventas a tomar decisiones informadas con respecto a los ingresos de tu empresa- hasta integraciones de CRM con herramientas de terceros que pueden facilitar el marketing digital o la atención al cliente.<br>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
Le visionnage de formations en ligne ou de tutoriels vidéo présente plusieurs avantages par rapport à d'autres types de supports. Les didacticiels vidéo offrent une certaine souplesse : votre personnel peut les regarder n'importe où, ils sont plus rentables que l'organisation répétée de formations en personne, et plus attrayants que d'autres types de supports.<br>
|
||||
De plus, nos vidéos interactives décomposent des informations complexes en petits morceaux, ce qui est particulièrement utile pour mettre en selle les nouveaux membres de l'équipe.<br>
|
||||
Les didacticiels et cours vidéo sont particulièrement utiles pour les utilisateurs de logiciels CRM. Les CRM peuvent être complexes et proposent de multiples outils pour aider les équipes de vente à augmenter leurs revenus. Les vidéos tutorielles vous aideront à expliquer les fonctionnalités du logiciel que votre équipe de vente utilise.<br>
|
||||
Les didacticiels vidéo vous aideront également à intégrer les nouveaux membres de l'équipe et vous feront gagner du temps lorsque vous ajoutez de nouveaux collaborateurs dans votre CRM. De plus, vous pouvez rendre les vidéos interactives en les regardant pendant que vous utilisez l'outil.<br>
|
||||
L'objectif global d'un outil de gestion de la relation client est de maximiser les revenus. Un bon cours en ligne devrait proposer des vidéos démontrant comment les fonctionnalités du CRM peuvent augmenter l'efficacité commerciale de votre équipe de vente.<br>
|
||||
Pipedrive propose aux utilisateurs des vidéos sur plusieurs de ses fonctionnalités. Ces fonctionnalités vont des outils de reporting, qui facilitent la prévision des résultats de vente et aident votre équipe de vente à prendre des décisions éclairées concernant les revenus de votre entreprise, aux intégrations CRM avec des outils tiers qui peuvent faciliter le marketing numérique ou le support client.<br>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
Assistir a treinamentos on-line ou tutoriais em vídeo sobre outros tipos de material tem várias vantagens. Os vídeos tutoriais oferecem flexibilidade - seu pessoal pode assisti-los em qualquer lugar - eles são mais econômicos do que organizar treinamentos presenciais repetidos e mais envolventes do que outros tipos de material.<br>
|
||||
Além disso, nossos vídeos interativos decompõem informações complexas em pedaços menores, o que é especialmente útil ao mostrar aos novos membros da equipe como você faz as coisas.<br>
|
||||
Os vídeos tutoriais e cursos são particularmente úteis para os usuários de software CRM. CRMs podem ser complexos, com múltiplas ferramentas para ajudar as equipes de vendas a aumentar a receita. Os vídeos tutoriais ajudarão a explicar as características do software que sua equipe de vendas está usando. Isto, por sua vez, lhes dará diferentes maneiras de aumentar sua produtividade e eficiência.<br>
|
||||
Os vídeos tutoriais também o ajudarão a integrar novos membros da equipe e podem economizar tempo ao introduzir novos membros da equipe a um CRM. Além disso, você pode tornar os vídeos interativos ao assisti-los enquanto passa pela ferramenta.<br>
|
||||
O objetivo geral de uma ferramenta de gerenciamento de relacionamento com o cliente é maximizar a receita. Um bom curso on-line deve oferecer vídeos demonstrando como as características do CRM podem aumentar o poder de venda de sua equipe de vendas.<br>
|
||||
O Pipedrive oferece aos usuários vídeos sobre muitas de suas características. Estes recursos variam de ferramentas de relatório que facilitam a previsão dos resultados de vendas - ajudando sua equipe de vendas a tomar decisões esclarecidas sobre a receita de sua empresa - até integrações de CRM com ferramentas de terceiros que podem facilitar o marketing digital ou o suporte ao cliente.<br>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-info-section">
|
||||
<div class="page-info-section-image-wrapper">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/page_info_video_tutorial_3.png" alt="Learn Pipedrive recommended training courses ">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/page_info_video_tutorial_3.png">
|
||||
</div>
|
||||
<div class="page-info-section-text">
|
||||
<h3 class="page-info-section-title">
|
||||
<span class="lang-en">Recommended Pipedrive training courses</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-en">How our CRM tutorial videos can help you with Pipedrive</span>
|
||||
<span class="lang-de">Wie unsere CRM-Anleitungsvideos Ihnen mit Pipedrive helfen können</span>
|
||||
<span class="lang-es">Cómo pueden ayudarte nuestros vídeos tutoriales de CRM con Pipedrive</span>
|
||||
<span class="lang-fr">Comment nos tutoriels vidéo sur le CRM peuvent vous aider avec Pipedrive</span>
|
||||
<span class="lang-br">Como nossos vídeos tutoriais de CRM podem ajudar você com o Pipedrive</span>
|
||||
</h3>
|
||||
<div class="page-info-section-description">
|
||||
<span class="lang-en">
|
||||
@ -77,10 +121,42 @@
|
||||
<li>Provide tips to help you get the most out of our CRM system, helping your sales team with data management, business processes and improving the overall customer experience.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">
|
||||
Obwohl Pipedrive ein einfach zu bedienendes, intuitives CRM-Tool ist, können Video-Tutorials den Lernprozess Ihrer Vertriebsteams beschleunigen.<br>
|
||||
Ausführliche Video-Tutorials helfen Ihren Vertriebsmitarbeitern, das volle Potenzial der CRM-Software von Pipedrive zu nutzen, und versetzen sie in die Lage, den Umsatz und die Effizienz im gesamten Vertriebsprozess zu maximieren. Unsere Videoschulungsressourcen zeigen unter anderem:<br>
|
||||
<ul>
|
||||
<li>Wie man die grundlegenden Funktionen und Arbeitsabläufe von Pipedrive verwendet. Das Verstehen der Pipedrive-Grundlagen gibt Ihren Vertriebsmitarbeitern die Grundlage, um ihre Vertriebsmanagementfähigkeiten zu optimieren.</li>
|
||||
<li>Führen Sie Ihr Team durch komplexere Softwarefunktionen und -tools mit Hilfe von ausführlichen Online-Videotutorials zum Selbststudium.</li>
|
||||
<li>Geben Sie Tipps, damit Sie das Beste aus unserer Software herausholen</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
Aunque Pipedrive es una herramienta CRM fácil de usar e intuitiva, los tutoriales en vídeo pueden acelerar los procesos de aprendizaje de tus equipos de ventas.<br>
|
||||
Los tutoriales en vídeo en profundidad ayudan a tu fuerza de ventas a utilizar el software CRM de Pipedrive en todo su potencial, capacitándoles para maximizar los ingresos y la eficiencia en todo el proceso de ventas. Entre otras cosas, nuestros recursos de formación en vídeo:<br>
|
||||
<ul>
|
||||
<li>Demostrarán cómo utilizar las funciones y los flujos de trabajo básicos de Pipedrive. La comprensión de los fundamentos de Pipedrive proporcionará a tu personal de ventas la base para optimizar sus habilidades de gestión de ventas.</li>
|
||||
<li>Guiar a tu equipo a través de funciones y herramientas de software más complejas mediante tutoriales de vídeo en línea en profundidad y a tu propio ritmo.</li>
|
||||
<li>Proporcionar consejos para ayudarte a sacar el máximo partido de nuestro software de gestión de ventas.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
Bien que Pipedrive soit un outil CRM facile à utiliser et intuitif, les tutoriels vidéo peuvent accélérer le processus d'apprentissage de vos équipes de vente.<br>
|
||||
Les tutoriels vidéo approfondis aident votre force de vente à utiliser le logiciel CRM Pipedrive à son plein potentiel, lui permettant de maximiser les revenus et l'efficacité tout au long du processus de vente. Nos vidéos de formation vous montreront notamment :<br>
|
||||
<ul>
|
||||
<li>Le fonctionnement des fonctionnalités et flux de travail de base de Pipedrive. La compréhension des fondamentaux de Pipedrive fournira la base nécessaire à vos commerciaux pour optimiser leurs compétences en matière de gestion des ventes. </li>
|
||||
<li>Comment utiliser les fonctions et les outils plus complexes du logiciel grâce à des didacticiels vidéo en ligne approfondis et adaptés au rythme de chacun.</li>
|
||||
<li>Toutes sortes de conseils pour vous aider à tirer le meilleur parti de notre logiciel Pipedrive et à optimiser la gestion des données, les processus d'affaires et l'expérience client en général.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
Embora o Pipedrive seja uma ferramenta de CRM intuitiva e fácil de usar, os vídeos tutoriais podem acelerar os processos de aprendizagem de suas equipes de vendas.<br>
|
||||
Os vídeos tutoriais aprofundados ajudam sua força de vendas a usar o software de CRM da Pipedrive em todo o seu potencial, capacitando-as a maximizar a receita e a eficiência durante todo o processo de vendas. Entre outras coisas, nossos recursos de treinamento em vídeo irão:<br>
|
||||
<ul>
|
||||
<li>Demonstrar como utilizar os recursos básicos e fluxos de trabalho da Pipedrive. Compreender os fundamentos da Pipedrive dará à sua equipe de vendas a base para otimizar suas habilidades de gerenciamento de vendas.</li>
|
||||
<li>Acompanhe sua equipe através de recursos e ferramentas de software mais complexos por meio de tutoriais em vídeo online aprofundados e autodidatas.</li>
|
||||
<li>Fornecer dicas para ajudá-lo a obter o máximo de nosso sistema de CRM, ajudando sua equipe de vendas com gerenciamento de dados, processos comerciais e melhorando a experiência geral do cliente.</li>
|
||||
</ul>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -0,0 +1,122 @@
|
||||
<div class="webinars-hidden">
|
||||
{% for x in (1..categories_uuids.size) %}
|
||||
{% assign number_of_videos = 0 %}
|
||||
{% assign y = x | minus: 1 %}
|
||||
{% assign category_uuid = categories_uuids | slice: y %}
|
||||
<section class="webinars-section" item-categories="{{ category_uuid }}">
|
||||
<div class="webinars-section-header">
|
||||
<h3 class="webinars-title strong">
|
||||
{{ categories_names | slice: y }}
|
||||
</h3>
|
||||
<div class="webinars-section-button" onclick="this.parentNode.parentNode.classList.toggle('webinars-section-expanded')">
|
||||
<span class="webinars-section-button-hide">
|
||||
<span>Show less</span>
|
||||
</span>
|
||||
<span class="webinars-section-button-expand">
|
||||
<span>View all</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="webinars-list row">
|
||||
{% for course in courses.in_catalog %}
|
||||
{% assign course_categories = course.categories | map: 'id' %}
|
||||
{% if course.properties.webinar %}
|
||||
{% for cat in course_categories %}
|
||||
{% if category_uuid contains cat %}
|
||||
{% assign number_of_videos = number_of_videos | plus: 1 %}
|
||||
{% include "cards_course" %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% if number_of_videos <= 3 %}
|
||||
<style>
|
||||
{% if number_of_videos == 1 %}
|
||||
.webinars-section[item-categories="{{ category_uuid }}"] .webinars-section-button {
|
||||
display: none;
|
||||
}
|
||||
{% elsif number_of_videos == 2 %}
|
||||
@media only screen and (min-width: 768px) {
|
||||
.webinars-section[item-categories="{{ category_uuid }}"] .webinars-section-button {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
{% else %}
|
||||
@media only screen and (min-width: 1200px) {
|
||||
.webinars-section[item-categories="{{ category_uuid }}"] .webinars-section-button {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
{% endif %}
|
||||
</style>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.webinars-title {
|
||||
padding-bottom: 40px;
|
||||
padding-top: 40px;
|
||||
}
|
||||
.webinars-section:not(:last-of-type) .webinars-list {
|
||||
border-bottom: 1px solid #E1E1FF;
|
||||
}
|
||||
.webinars-section-filtered .webinars-list {
|
||||
border-bottom: none !important;
|
||||
}
|
||||
.webinars-list {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.webinars-section-filtered {
|
||||
margin-top: 40px;
|
||||
}
|
||||
.webinars-section-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.webinars-section-filtered .webinars-section-header {
|
||||
display: none;
|
||||
}
|
||||
.webinars-section-button {
|
||||
color: #0070D6;
|
||||
cursor: pointer;
|
||||
}
|
||||
.webinars-section-button-hide {
|
||||
display: none;
|
||||
}
|
||||
.webinars-section.webinars-section-expanded .webinars-section-button-hide {
|
||||
display: block;
|
||||
}
|
||||
.webinars-section.webinars-section-expanded .webinars-section-button-expand {
|
||||
display: none;
|
||||
}
|
||||
@media only screen and (max-width: 767px) {
|
||||
.webinars-section:not(.webinars-section-expanded) .course-card:not(:first-child) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 768px) {
|
||||
.webinars-list > div {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
.webinars-list {
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 768px) and (max-width: 1199px) {
|
||||
.webinars-section:not(.webinars-section-expanded) .course-card:nth-child(n+3) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 1200px) {
|
||||
.webinars-section:not(.webinars-section-expanded) .course-card:nth-child(n+4) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -0,0 +1,111 @@
|
||||
{% if uuids.size > 0 %}
|
||||
<div class="webinars-filter">
|
||||
<div class="webinars-filter-item webinars-filter-item-active body-s strong" onclick="filterItems(this)" category-uuid="ALL">
|
||||
<span >All topics</span>
|
||||
</div>
|
||||
{% for x in (1..uuids.size) %}
|
||||
{% assign y = x | minus: 1 %}
|
||||
<div class="webinars-filter-item body-s strong" onclick="filterItems(this)" category-uuid="{{ uuids | slice: y }}">
|
||||
{{ names | slice: y }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<style>
|
||||
.webinars-filter {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
margin-top: 40px;
|
||||
flex-wrap: wrap;
|
||||
flex-direction: row-reverse;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.webinars-filter-item {
|
||||
padding: 10px 20px;
|
||||
border: 2px solid #E4E6E9;
|
||||
border-radius: 300px;
|
||||
color: #656E7A;
|
||||
white-space: nowrap;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.webinars-filter-item:not(.webinars-filter-item-active):hover {
|
||||
color: var(--black-digital);
|
||||
}
|
||||
|
||||
.webinars-filter-item-active {
|
||||
color: var(--green);
|
||||
border: 2px solid var(--green);
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.category-hidden {
|
||||
display: none !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
window.addEventListener('DOMContentLoaded', () => {
|
||||
document.querySelectorAll('.webinars-card-description').forEach((x) => {
|
||||
$clamp(x, {clamp: 5});
|
||||
})
|
||||
|
||||
{% if current_school.sso_active? %}
|
||||
var categoriesOrder = ['ALL',
|
||||
'e2af61ed-3fbc-448d-9d88-3a66b44735b3',
|
||||
'8fff4f04-75a5-43df-ae71-1fb4efb052a6',
|
||||
'5e2da7ac-8c87-49a2-b385-c5be91c0217f'
|
||||
]
|
||||
{% else %}
|
||||
var categoriesOrder = ['ALL',
|
||||
'b62b5946-6a39-4fac-90e2-87b921620aa4',
|
||||
'db1bb7fd-bb8f-4939-a731-e9f8e5005370',
|
||||
'41abb409-d6f4-4ee9-b07e-0320dc3cc719'
|
||||
]
|
||||
{% endif %}
|
||||
|
||||
let filtersWrapper = document.querySelector('.webinars-filter');
|
||||
let webinarsWrapper = document.querySelector('.webinars');
|
||||
categoriesOrder.forEach(category => {
|
||||
let filter = document.querySelector(`.webinars-filter-item[category-uuid="${category}"]`)
|
||||
if (filter)
|
||||
filtersWrapper.appendChild(filter);
|
||||
if (category !== 'ALL') {
|
||||
let webinarsSection = document.querySelector(`.webinar-section[item-categories="${category}"]`);
|
||||
if (webinarsSection) {
|
||||
webinarsWrapper.appendChild(webinarsSection);
|
||||
}
|
||||
}
|
||||
});
|
||||
document.querySelectorAll('.webinars-filter-hidden .webinars-filter-item').forEach(filter => {
|
||||
filtersWrapper.appendChild(filter);
|
||||
});
|
||||
document.querySelectorAll('.webinars-hidden .webinars-section').forEach(webinarsSection => {
|
||||
webinarsWrapper.appendChild(webinarsSection);
|
||||
});
|
||||
})
|
||||
|
||||
function filterItems(element) {
|
||||
if (!element.classList.contains(('webinars-filter-item-active'))) {
|
||||
document.querySelector('.webinars-filter-item-active').classList.remove('webinars-filter-item-active');
|
||||
element.classList.add('webinars-filter-item-active');
|
||||
let selectedCategoryUUID = element.getAttribute('category-uuid');
|
||||
document.querySelectorAll('.webinars-section-expanded').forEach(x => {x.classList.remove('webinars-section-expanded')});
|
||||
document.querySelectorAll('.webinars-section-filtered').forEach(x => {x.classList.remove('webinars-section-filtered')});
|
||||
document.querySelectorAll('[item-categories]').forEach(x => {x.classList.remove('category-hidden')});
|
||||
if (selectedCategoryUUID !== 'ALL') {
|
||||
document.querySelectorAll(".webinars-section").forEach(x => {
|
||||
if (x.getAttribute('item-categories') === selectedCategoryUUID) {
|
||||
x.classList.add('webinars-section-expanded');
|
||||
x.classList.add('webinars-section-filtered');
|
||||
} else {
|
||||
x.classList.add('category-hidden');
|
||||
}
|
||||
});
|
||||
}
|
||||
window.sessionStorage.setItem('last-selected-video-filter', selectedCategoryUUID);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
@ -0,0 +1,18 @@
|
||||
<div class="green-banner-wrapper green-banner-wrapper-image">
|
||||
<div class="green-banner width-limit">
|
||||
<img class="green-banner-image" alt="banner image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp">
|
||||
<div class="green-banner-content">
|
||||
<h1 class="green-banner-title">
|
||||
Join our next Pipedrive introduction webinar
|
||||
</h1>
|
||||
<div class="green-banner-text">
|
||||
Every Tuesday at 5pm GMT our product experts Pipe Drive and Drive Pipe host a webinar to get you acquainted with everything that helps you get started with Pipedrive. Join the next session for free.
|
||||
</div>
|
||||
<div class="button-wrapper">
|
||||
<a class="green-banner-button button-large button-1" href="">
|
||||
Register
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -0,0 +1,68 @@
|
||||
<div class="green-banner-wrapper green-banner-wrapper-image">
|
||||
<div class="green-banner start-now width-limit">
|
||||
<img class="green-banner-image start-now-image" alt="banner image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/start_today.png">
|
||||
<div class="green-banner-content start-now-content">
|
||||
<h1 class="green-banner-title start-now-title">
|
||||
How to get most out of Pipedrive?
|
||||
</h1>
|
||||
<div class="green-banner-text start-now-text">
|
||||
Welcome to Pipedrive Academy! Pipedrive Academy features CRM training videos and tutorials to help you level up your CRM and sales skills, from quick CRM courses to in-depth tutorials on specific features.
|
||||
</div>
|
||||
<div class="button-wrapper start-now-button-wrapper">
|
||||
<a class="green-banner-button button-large button-1" href="">
|
||||
Start now
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.start-now {
|
||||
max-width: unset;
|
||||
height: 330px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.start-now-image {
|
||||
flex: 0;
|
||||
width: auto;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
height: 330px;
|
||||
}
|
||||
|
||||
.start-now-content {
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.start-now-image, .start-now {
|
||||
height: 403px;
|
||||
}
|
||||
}
|
||||
|
||||
.start-now-title {
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-size: 30px;
|
||||
line-height: 36px;
|
||||
text-align: center;
|
||||
color: #192435;
|
||||
}
|
||||
|
||||
.start-now-text {
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-size: 18px;
|
||||
line-height: 30px;
|
||||
text-align: center;
|
||||
color: #192435;
|
||||
}
|
||||
|
||||
.start-now-button-wrapper {
|
||||
justify-content: center;
|
||||
}
|
||||
</style>
|
||||
@ -0,0 +1,90 @@
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
{% else %}
|
||||
{% include "header" %}
|
||||
|
||||
<main class="catalog">
|
||||
{% assign banner_title = '<span class="lang-en">Academy courses</span>
|
||||
<span class="lang-de">Academy-Kurse</span>
|
||||
<span class="lang-es">Cursos de la Academia</span>
|
||||
<span class="lang-fr">Cours de l'Académie</span>
|
||||
<span class="lang-br">Cursos da Academia</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">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.</span>
|
||||
<span class="lang-de">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.</span>
|
||||
<span class="lang-es">¡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</span>
|
||||
<span class="lang-fr">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.</span>
|
||||
<span class="lang-br">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.</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Unlock courses</span>
|
||||
<span class="lang-de">Kurse freischalten</span>
|
||||
<span class="lang-es">Desbloquear cursos</span>
|
||||
<span class="lang-fr">Débloquer les cours</span>
|
||||
<span class="lang-br">Desbloquear cursos</span>'
|
||||
%}
|
||||
{% 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 = '<span class="lang-en">How to get the most out of Pipedrive?</span>
|
||||
<span class="lang-de">Wie machen Sie das Beste aus Pipedrive?</span>
|
||||
<span class="lang-es">¿Cómo aprovechar al máximo Pipedrive?</span>
|
||||
<span class="lang-fr">Comment tirer pleinement parti de Pipedrive ?</span>
|
||||
<span class="lang-br">Como aproveitar o Pipedrive ao máximo?</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">
|
||||
Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from <a href="https://www.pipedrive.com/en/products/email-marketing-software/marketing-automation-tool">marketing automation</a> features to in-depth sales reports.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.<br>
|
||||
</span>
|
||||
<span class="lang-de">
|
||||
Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur <a href="https://www.pipedrive.com/de/products/email-marketing-software/marketing-automation-tool">Marketingautomatisierung</a> bis zu detaillierten Vertriebsberichten.<br>
|
||||
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. <br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
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 <a href="https://www.pipedrive.com/es/products/email-marketing-software/marketing-automation-tool">automatización de marketing</a> hasta informes de ventas detallados.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.<br>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
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 <a href="https://www.pipedrive.com/fr/products/email-marketing-software/marketing-automation-tool">marketing automation</a> aux reporting analytiques.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
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 <a href="https://www.pipedrive.com/pt/products/email-marketing-software/marketing-automation-tool">automatização do marketing</a> aos relatórios detalhados sobre vendas.<br>
|
||||
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. <br><br>
|
||||
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. <br>
|
||||
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.<br>
|
||||
</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Start today</span>
|
||||
<span class="lang-de">Beginnen Sie heute</span>
|
||||
<span class="lang-es">Empieza hoy mismo</span>
|
||||
<span class="lang-fr">Commencez dès aujourd'hui</span>
|
||||
<span class="lang-br">Comece hoje mesmo</span>'
|
||||
%}
|
||||
{% 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" %}
|
||||
</main>
|
||||
|
||||
{% include "footer" %}
|
||||
{% endif %}
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? %}
|
||||
<script>
|
||||
const redirectionLink = 'https://user-learn.pipedrive.com/app/catalog'
|
||||
document.querySelector('#redirect-between-academies').setAttribute('href', redirectionLink)
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
@ -0,0 +1,112 @@
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
{% else %}
|
||||
{% include "header" %}
|
||||
|
||||
<main class="homepage">
|
||||
{% 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 = '<span class="lang-en">Pipedrive Learn</span>
|
||||
<span class="lang-de">Pipedrive Learn</span>
|
||||
<span class="lang-es">Pipedrive Aprende</span>
|
||||
<span class="lang-fr">Pipedrive Learn</span>
|
||||
<span class="lang-br">Aprenda com o Pipedrive</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">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.</span>
|
||||
<span class="lang-de">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.</span>
|
||||
<span class="lang-es">¡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.</span>
|
||||
<span class="lang-fr">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.</span>
|
||||
<span class="lang-br">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.</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Register now</span>
|
||||
<span class="lang-de">Jetzt anmelden</span>
|
||||
<span class="lang-es">Regístrate ahora</span>
|
||||
<span class="lang-fr">Inscrivez-vous maintenant</span>
|
||||
<span class="lang-br">Cadastre-se agora</span>'
|
||||
%}
|
||||
{% 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 = '<span class="lang-en">How to get the most out of Pipedrive</span>
|
||||
<span class="lang-de">Wie Sie das Beste aus Pipedrive herausholen</span>
|
||||
<span class="lang-es">Cómo sacar el máximo partido a Pipedrive</span>
|
||||
<span class="lang-fr">Comment tirer le meilleur parti de Pipedrive</span>
|
||||
<span class="lang-br">Como aproveitar o Pipedrive ao máximo</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">
|
||||
Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from <a href="https://www.pipedrive.com/en/products/email-marketing-software/marketing-automation-tool">marketing automation</a> features to in-depth sales reports.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.<br>
|
||||
</span>
|
||||
<span class="lang-de">
|
||||
Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur <a href="https://www.pipedrive.com/de/products/email-marketing-software/marketing-automation-tool">Marketingautomatisierung</a> bis zu detaillierten Vertriebsberichten.<br>
|
||||
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. <br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
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 <a href="https://www.pipedrive.com/es/products/email-marketing-software/marketing-automation-tool">automatización de marketing</a> hasta informes de ventas detallados.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.<br>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
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 <a href="https://www.pipedrive.com/fr/products/email-marketing-software/marketing-automation-tool">marketing automation</a> aux reporting analytiques.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
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 <a href="https://www.pipedrive.com/pt/products/email-marketing-software/marketing-automation-tool">automatização do marketing</a> aos relatórios detalhados sobre vendas.<br>
|
||||
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. <br><br>
|
||||
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. <br>
|
||||
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.<br>
|
||||
</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Start today</span>
|
||||
<span class="lang-de">Beginnen Sie heute</span>
|
||||
<span class="lang-es">Empieza hoy mismo</span>
|
||||
<span class="lang-fr">Commencez dès aujourd'hui</span>
|
||||
<span class="lang-br">Comece hoje mesmo</span>'
|
||||
%}
|
||||
{% 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" %}
|
||||
</main>
|
||||
|
||||
{% include "footer" %}
|
||||
{% endif %}
|
||||
|
||||
<script>
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? %}
|
||||
const redirectionLink = 'https://user-learn.pipedrive.com/app'
|
||||
document.querySelector('#redirect-between-academies').setAttribute('href', redirectionLink)
|
||||
{% endif %}
|
||||
</script>
|
||||
|
||||
@ -0,0 +1,63 @@
|
||||
{% comment %} skip-auth {% endcomment %}
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
{% else %}
|
||||
{% include "header" %}
|
||||
|
||||
<main class="video-tutorials">
|
||||
{% assign banner_title = '<span class="lang-en">Video Tutorials</span>
|
||||
<span class="lang-de">Video-Tutorials</span>
|
||||
<span class="lang-es">Tutoriales en vídeo</span>
|
||||
<span class="lang-fr">Tutoriels vidéo</span>
|
||||
<span class="lang-br">Tutoriais em vídeo</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">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.</span>
|
||||
<span class="lang-de">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.</span>
|
||||
<span class="lang-es">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.</span>
|
||||
<span class="lang-fr">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.</span>
|
||||
<span class="lang-br">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.</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Sign up for courses</span>
|
||||
<span class="lang-de">Für Kurse anmelden</span>
|
||||
<span class="lang-es">Inscríbete en los cursos</span>
|
||||
<span class="lang-fr">S'inscrire à des cours</span>
|
||||
<span class="lang-br">Inscreva-se nos cursos</span>'
|
||||
%}
|
||||
{% 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 = '<span class="lang-en">Unlock videos for free</span>
|
||||
<span class="lang-de">Videos kostenlos freischalten</span>
|
||||
<span class="lang-es">Desbloquear vídeos gratis</span>
|
||||
<span class="lang-fr">Débloquez des vidéos gratuitement</span>
|
||||
<span class="lang-br">Desbloquear vídeos de graça</span>'
|
||||
%}
|
||||
{% assign banner_text = "" %}
|
||||
{% assign banner_button_text = '<span class="lang-en">Sign up</span>
|
||||
<span class="lang-de">Anmelden</span>
|
||||
<span class="lang-es">Regístrate</span>
|
||||
<span class="lang-fr">S'inscrire</span>
|
||||
<span class="lang-br">Cadastre-se</span>'
|
||||
%}
|
||||
{% assign banner_button_link = "#sso-widget" %}
|
||||
{% include "green_banner_text_bg_image" %}
|
||||
{% endunless %}
|
||||
</main>
|
||||
|
||||
{% include "footer" %}
|
||||
{% endif %}
|
||||
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? %}
|
||||
<script>
|
||||
const redirectionLink = 'https://user-learn.pipedrive.com/app/video-tutorials'
|
||||
document.querySelector('#redirect-between-academies').setAttribute('href', redirectionLink)
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
@ -1,60 +1,91 @@
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
{% else %}
|
||||
{% include "header" %}
|
||||
|
||||
<main class="catalog">
|
||||
{% assign banner_title = '<span class="lang-en">Academy Courses</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
{% assign banner_text = '<span class="lang-en">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.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
{% assign banner_button_text = '<span class="lang-en">Unlock courses</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
{% assign banner_button_link = "#sso-widget" %}
|
||||
{% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-academy-courses.webp" %}
|
||||
{% assign banner_image_alt = "Man watching at a Pipedrive sales academy course on the laptop" %}
|
||||
{% include "green_banner_image" %}
|
||||
|
||||
{% include "catalog_courses" %}
|
||||
{% include "catalog_page_info" %}
|
||||
{% include "opinions" %}
|
||||
{% include 'catalog_faq' %}
|
||||
|
||||
{% assign banner_title = '<span class="lang-en">How to get the most out of Pipedrive?</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
{% assign banner_text = '<span class="lang-en">Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from <a href="https://www.pipedrive.com/en/products/email-marketing-software/marketing-automation-tool">marketing automation</a> features to in-depth sales reports.<br>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.<br><br>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.<br>Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
{% assign banner_button_text = '<span class="lang-en">Start today</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
{% assign banner_button_link = "#sso-widget" %}
|
||||
{% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %}
|
||||
{% assign banner_image_alt = "Learn Pipedrive - CRM pipeline on the laptop" %}
|
||||
{% include "green_banner_image_alt" %}
|
||||
</main>
|
||||
|
||||
{% include "footer" %}
|
||||
{% include "header" %}
|
||||
|
||||
<main class="catalog">
|
||||
{% assign banner_title = '<span class="lang-en">Academy courses</span>
|
||||
<span class="lang-de">Academy-Kurse</span>
|
||||
<span class="lang-es">Cursos de la Academia</span>
|
||||
<span class="lang-fr">Cours de l'Académie</span>
|
||||
<span class="lang-br">Cursos da Academia</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">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.</span>
|
||||
<span class="lang-de">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.</span>
|
||||
<span class="lang-es">¡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</span>
|
||||
<span class="lang-fr">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.</span>
|
||||
<span class="lang-br">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.</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Unlock courses</span>
|
||||
<span class="lang-de">Kurse freischalten</span>
|
||||
<span class="lang-es">Desbloquear cursos</span>
|
||||
<span class="lang-fr">Débloquer les cours</span>
|
||||
<span class="lang-br">Desbloquear cursos</span>'
|
||||
%}
|
||||
{% 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 = '<span class="lang-en">How to get the most out of Pipedrive?</span>
|
||||
<span class="lang-de">Wie machen Sie das Beste aus Pipedrive?</span>
|
||||
<span class="lang-es">¿Cómo aprovechar al máximo Pipedrive?</span>
|
||||
<span class="lang-fr">Comment tirer pleinement parti de Pipedrive ?</span>
|
||||
<span class="lang-br">Como aproveitar o Pipedrive ao máximo?</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">
|
||||
Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from <a href="https://www.pipedrive.com/en/products/email-marketing-software/marketing-automation-tool">marketing automation</a> features to in-depth sales reports.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.<br>
|
||||
</span>
|
||||
<span class="lang-de">
|
||||
Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur <a href="https://www.pipedrive.com/de/products/email-marketing-software/marketing-automation-tool">Marketingautomatisierung</a> bis zu detaillierten Vertriebsberichten.<br>
|
||||
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. <br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
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 <a href="https://www.pipedrive.com/es/products/email-marketing-software/marketing-automation-tool">automatización de marketing</a> hasta informes de ventas detallados.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.<br>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
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 <a href="https://www.pipedrive.com/fr/products/email-marketing-software/marketing-automation-tool">marketing automation</a> aux reporting analytiques.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
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 <a href="https://www.pipedrive.com/pt/products/email-marketing-software/marketing-automation-tool">automatização do marketing</a> aos relatórios detalhados sobre vendas.<br>
|
||||
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. <br><br>
|
||||
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. <br>
|
||||
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.<br>
|
||||
</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Start today</span>
|
||||
<span class="lang-de">Beginnen Sie heute</span>
|
||||
<span class="lang-es">Empieza hoy mismo</span>
|
||||
<span class="lang-fr">Commencez dès aujourd'hui</span>
|
||||
<span class="lang-br">Comece hoje mesmo</span>'
|
||||
%}
|
||||
{% 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" %}
|
||||
</main>
|
||||
|
||||
{% include "footer" %}
|
||||
{% endif %}
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? %}
|
||||
<script>
|
||||
const redirectionLink = 'https://user-learn.pipedrive.com/app/catalog'
|
||||
document.querySelector('#redirect-between-academies').setAttribute('href', redirectionLink)
|
||||
</script>
|
||||
<script>
|
||||
const redirectionLink = 'https://user-learn.pipedrive.com/app/catalog'
|
||||
document.querySelector('#redirect-between-academies').setAttribute('href', redirectionLink)
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
@ -1,3 +1,11 @@
|
||||
<script>
|
||||
const courseDefaultPageTitle = document.title.split(" | ")
|
||||
const courseName = '{{course.name}}'
|
||||
document.title = `${courseName} | ${courseDefaultPageTitle[1]}`
|
||||
const courseDescription = '{{course.short_description}}'
|
||||
$('head').append( `<meta name="description" content="${courseDescription}">` );
|
||||
</script>
|
||||
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
{% else %}
|
||||
@ -18,7 +26,7 @@
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
{% if current_person.signed_in? %}
|
||||
{% if current_person.signed_in? and current_school.properties.sandbox == false %}
|
||||
<script>
|
||||
function setupLatestCourses() {
|
||||
let newCourse = '{{ course.id }}';
|
||||
|
||||
@ -0,0 +1,90 @@
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
{% else %}
|
||||
{% include "header" %}
|
||||
|
||||
<main class="catalog">
|
||||
{% assign banner_title = '<span class="lang-en">Academy courses</span>
|
||||
<span class="lang-de">Academy-Kurse</span>
|
||||
<span class="lang-es">Cursos de la Academia</span>
|
||||
<span class="lang-fr">Cours de l'Académie</span>
|
||||
<span class="lang-br">Cursos da Academia</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">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.</span>
|
||||
<span class="lang-de">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.</span>
|
||||
<span class="lang-es">¡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</span>
|
||||
<span class="lang-fr">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.</span>
|
||||
<span class="lang-br">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.</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Unlock courses</span>
|
||||
<span class="lang-de">Kurse freischalten</span>
|
||||
<span class="lang-es">Desbloquear cursos</span>
|
||||
<span class="lang-fr">Débloquer les cours</span>
|
||||
<span class="lang-br">Desbloquear cursos</span>'
|
||||
%}
|
||||
{% 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 = '<span class="lang-en">How to get the most out of Pipedrive?</span>
|
||||
<span class="lang-de">Wie machen Sie das Beste aus Pipedrive?</span>
|
||||
<span class="lang-es">¿Cómo aprovechar al máximo Pipedrive?</span>
|
||||
<span class="lang-fr">Comment tirer pleinement parti de Pipedrive ?</span>
|
||||
<span class="lang-br">Como aproveitar o Pipedrive ao máximo?</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">
|
||||
Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from <a href="https://www.pipedrive.com/en/products/email-marketing-software/marketing-automation-tool">marketing automation</a> features to in-depth sales reports.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.<br>
|
||||
</span>
|
||||
<span class="lang-de">
|
||||
Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur <a href="https://www.pipedrive.com/de/products/email-marketing-software/marketing-automation-tool">Marketingautomatisierung</a> bis zu detaillierten Vertriebsberichten.<br>
|
||||
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. <br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
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 <a href="https://www.pipedrive.com/es/products/email-marketing-software/marketing-automation-tool">automatización de marketing</a> hasta informes de ventas detallados.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.<br>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
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 <a href="https://www.pipedrive.com/fr/products/email-marketing-software/marketing-automation-tool">marketing automation</a> aux reporting analytiques.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
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 <a href="https://www.pipedrive.com/pt/products/email-marketing-software/marketing-automation-tool">automatização do marketing</a> aos relatórios detalhados sobre vendas.<br>
|
||||
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. <br><br>
|
||||
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. <br>
|
||||
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.<br>
|
||||
</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Start today</span>
|
||||
<span class="lang-de">Beginnen Sie heute</span>
|
||||
<span class="lang-es">Empieza hoy mismo</span>
|
||||
<span class="lang-fr">Commencez dès aujourd'hui</span>
|
||||
<span class="lang-br">Comece hoje mesmo</span>'
|
||||
%}
|
||||
{% 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" %}
|
||||
</main>
|
||||
|
||||
{% include "footer" %}
|
||||
{% endif %}
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? %}
|
||||
<script>
|
||||
const redirectionLink = 'https://user-learn.pipedrive.com/app/catalog'
|
||||
document.querySelector('#redirect-between-academies').setAttribute('href', redirectionLink)
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
@ -0,0 +1,112 @@
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
{% else %}
|
||||
{% include "header" %}
|
||||
|
||||
<main class="homepage">
|
||||
{% 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 = '<span class="lang-en">Pipedrive Learn</span>
|
||||
<span class="lang-de">Pipedrive Learn</span>
|
||||
<span class="lang-es">Pipedrive Aprende</span>
|
||||
<span class="lang-fr">Pipedrive Learn</span>
|
||||
<span class="lang-br">Aprenda com o Pipedrive</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">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.</span>
|
||||
<span class="lang-de">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.</span>
|
||||
<span class="lang-es">¡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.</span>
|
||||
<span class="lang-fr">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.</span>
|
||||
<span class="lang-br">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.</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Register now</span>
|
||||
<span class="lang-de">Jetzt anmelden</span>
|
||||
<span class="lang-es">Regístrate ahora</span>
|
||||
<span class="lang-fr">Inscrivez-vous maintenant</span>
|
||||
<span class="lang-br">Cadastre-se agora</span>'
|
||||
%}
|
||||
{% 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 = '<span class="lang-en">How to get the most out of Pipedrive</span>
|
||||
<span class="lang-de">Wie Sie das Beste aus Pipedrive herausholen</span>
|
||||
<span class="lang-es">Cómo sacar el máximo partido a Pipedrive</span>
|
||||
<span class="lang-fr">Comment tirer le meilleur parti de Pipedrive</span>
|
||||
<span class="lang-br">Como aproveitar o Pipedrive ao máximo</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">
|
||||
Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from <a href="https://www.pipedrive.com/en/products/email-marketing-software/marketing-automation-tool">marketing automation</a> features to in-depth sales reports.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.<br>
|
||||
</span>
|
||||
<span class="lang-de">
|
||||
Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur <a href="https://www.pipedrive.com/de/products/email-marketing-software/marketing-automation-tool">Marketingautomatisierung</a> bis zu detaillierten Vertriebsberichten.<br>
|
||||
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. <br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
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 <a href="https://www.pipedrive.com/es/products/email-marketing-software/marketing-automation-tool">automatización de marketing</a> hasta informes de ventas detallados.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.<br>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
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 <a href="https://www.pipedrive.com/fr/products/email-marketing-software/marketing-automation-tool">marketing automation</a> aux reporting analytiques.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
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 <a href="https://www.pipedrive.com/pt/products/email-marketing-software/marketing-automation-tool">automatização do marketing</a> aos relatórios detalhados sobre vendas.<br>
|
||||
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. <br><br>
|
||||
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. <br>
|
||||
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.<br>
|
||||
</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Start today</span>
|
||||
<span class="lang-de">Beginnen Sie heute</span>
|
||||
<span class="lang-es">Empieza hoy mismo</span>
|
||||
<span class="lang-fr">Commencez dès aujourd'hui</span>
|
||||
<span class="lang-br">Comece hoje mesmo</span>'
|
||||
%}
|
||||
{% 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" %}
|
||||
</main>
|
||||
|
||||
{% include "footer" %}
|
||||
{% endif %}
|
||||
|
||||
<script>
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? %}
|
||||
const redirectionLink = 'https://user-learn.pipedrive.com/app'
|
||||
document.querySelector('#redirect-between-academies').setAttribute('href', redirectionLink)
|
||||
{% endif %}
|
||||
</script>
|
||||
|
||||
@ -0,0 +1,63 @@
|
||||
{% comment %} skip-auth {% endcomment %}
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
{% else %}
|
||||
{% include "header" %}
|
||||
|
||||
<main class="video-tutorials">
|
||||
{% assign banner_title = '<span class="lang-en">Video Tutorials</span>
|
||||
<span class="lang-de">Video-Tutorials</span>
|
||||
<span class="lang-es">Tutoriales en vídeo</span>
|
||||
<span class="lang-fr">Tutoriels vidéo</span>
|
||||
<span class="lang-br">Tutoriais em vídeo</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">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.</span>
|
||||
<span class="lang-de">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.</span>
|
||||
<span class="lang-es">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.</span>
|
||||
<span class="lang-fr">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.</span>
|
||||
<span class="lang-br">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.</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Sign up for courses</span>
|
||||
<span class="lang-de">Für Kurse anmelden</span>
|
||||
<span class="lang-es">Inscríbete en los cursos</span>
|
||||
<span class="lang-fr">S'inscrire à des cours</span>
|
||||
<span class="lang-br">Inscreva-se nos cursos</span>'
|
||||
%}
|
||||
{% 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 = '<span class="lang-en">Unlock videos for free</span>
|
||||
<span class="lang-de">Videos kostenlos freischalten</span>
|
||||
<span class="lang-es">Desbloquear vídeos gratis</span>
|
||||
<span class="lang-fr">Débloquez des vidéos gratuitement</span>
|
||||
<span class="lang-br">Desbloquear vídeos de graça</span>'
|
||||
%}
|
||||
{% assign banner_text = "" %}
|
||||
{% assign banner_button_text = '<span class="lang-en">Sign up</span>
|
||||
<span class="lang-de">Anmelden</span>
|
||||
<span class="lang-es">Regístrate</span>
|
||||
<span class="lang-fr">S'inscrire</span>
|
||||
<span class="lang-br">Cadastre-se</span>'
|
||||
%}
|
||||
{% assign banner_button_link = "#sso-widget" %}
|
||||
{% include "green_banner_text_bg_image" %}
|
||||
{% endunless %}
|
||||
</main>
|
||||
|
||||
{% include "footer" %}
|
||||
{% endif %}
|
||||
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? %}
|
||||
<script>
|
||||
const redirectionLink = 'https://user-learn.pipedrive.com/app/video-tutorials'
|
||||
document.querySelector('#redirect-between-academies').setAttribute('href', redirectionLink)
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
@ -0,0 +1,90 @@
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
{% else %}
|
||||
{% include "header" %}
|
||||
|
||||
<main class="catalog">
|
||||
{% assign banner_title = '<span class="lang-en">Academy courses</span>
|
||||
<span class="lang-de">Academy-Kurse</span>
|
||||
<span class="lang-es">Cursos de la Academia</span>
|
||||
<span class="lang-fr">Cours de l'Académie</span>
|
||||
<span class="lang-br">Cursos da Academia</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">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.</span>
|
||||
<span class="lang-de">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.</span>
|
||||
<span class="lang-es">¡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</span>
|
||||
<span class="lang-fr">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.</span>
|
||||
<span class="lang-br">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.</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Unlock courses</span>
|
||||
<span class="lang-de">Kurse freischalten</span>
|
||||
<span class="lang-es">Desbloquear cursos</span>
|
||||
<span class="lang-fr">Débloquer les cours</span>
|
||||
<span class="lang-br">Desbloquear cursos</span>'
|
||||
%}
|
||||
{% 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 = '<span class="lang-en">How to get the most out of Pipedrive?</span>
|
||||
<span class="lang-de">Wie machen Sie das Beste aus Pipedrive?</span>
|
||||
<span class="lang-es">¿Cómo aprovechar al máximo Pipedrive?</span>
|
||||
<span class="lang-fr">Comment tirer pleinement parti de Pipedrive ?</span>
|
||||
<span class="lang-br">Como aproveitar o Pipedrive ao máximo?</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">
|
||||
Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from <a href="https://www.pipedrive.com/en/products/email-marketing-software/marketing-automation-tool">marketing automation</a> features to in-depth sales reports.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.<br>
|
||||
</span>
|
||||
<span class="lang-de">
|
||||
Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur <a href="https://www.pipedrive.com/de/products/email-marketing-software/marketing-automation-tool">Marketingautomatisierung</a> bis zu detaillierten Vertriebsberichten.<br>
|
||||
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. <br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
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 <a href="https://www.pipedrive.com/es/products/email-marketing-software/marketing-automation-tool">automatización de marketing</a> hasta informes de ventas detallados.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.<br>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
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 <a href="https://www.pipedrive.com/fr/products/email-marketing-software/marketing-automation-tool">marketing automation</a> aux reporting analytiques.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
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 <a href="https://www.pipedrive.com/pt/products/email-marketing-software/marketing-automation-tool">automatização do marketing</a> aos relatórios detalhados sobre vendas.<br>
|
||||
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. <br><br>
|
||||
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. <br>
|
||||
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.<br>
|
||||
</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Start today</span>
|
||||
<span class="lang-de">Beginnen Sie heute</span>
|
||||
<span class="lang-es">Empieza hoy mismo</span>
|
||||
<span class="lang-fr">Commencez dès aujourd'hui</span>
|
||||
<span class="lang-br">Comece hoje mesmo</span>'
|
||||
%}
|
||||
{% 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" %}
|
||||
</main>
|
||||
|
||||
{% include "footer" %}
|
||||
{% endif %}
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? %}
|
||||
<script>
|
||||
const redirectionLink = 'https://user-learn.pipedrive.com/app/catalog'
|
||||
document.querySelector('#redirect-between-academies').setAttribute('href', redirectionLink)
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
@ -0,0 +1,112 @@
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
{% else %}
|
||||
{% include "header" %}
|
||||
|
||||
<main class="homepage">
|
||||
{% 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 = '<span class="lang-en">Pipedrive Learn</span>
|
||||
<span class="lang-de">Pipedrive Learn</span>
|
||||
<span class="lang-es">Pipedrive Aprende</span>
|
||||
<span class="lang-fr">Pipedrive Learn</span>
|
||||
<span class="lang-br">Aprenda com o Pipedrive</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">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.</span>
|
||||
<span class="lang-de">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.</span>
|
||||
<span class="lang-es">¡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.</span>
|
||||
<span class="lang-fr">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.</span>
|
||||
<span class="lang-br">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.</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Register now</span>
|
||||
<span class="lang-de">Jetzt anmelden</span>
|
||||
<span class="lang-es">Regístrate ahora</span>
|
||||
<span class="lang-fr">Inscrivez-vous maintenant</span>
|
||||
<span class="lang-br">Cadastre-se agora</span>'
|
||||
%}
|
||||
{% 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 = '<span class="lang-en">How to get the most out of Pipedrive</span>
|
||||
<span class="lang-de">Wie Sie das Beste aus Pipedrive herausholen</span>
|
||||
<span class="lang-es">Cómo sacar el máximo partido a Pipedrive</span>
|
||||
<span class="lang-fr">Comment tirer le meilleur parti de Pipedrive</span>
|
||||
<span class="lang-br">Como aproveitar o Pipedrive ao máximo</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">
|
||||
Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from <a href="https://www.pipedrive.com/en/products/email-marketing-software/marketing-automation-tool">marketing automation</a> features to in-depth sales reports.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.<br>
|
||||
</span>
|
||||
<span class="lang-de">
|
||||
Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur <a href="https://www.pipedrive.com/de/products/email-marketing-software/marketing-automation-tool">Marketingautomatisierung</a> bis zu detaillierten Vertriebsberichten.<br>
|
||||
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. <br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
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 <a href="https://www.pipedrive.com/es/products/email-marketing-software/marketing-automation-tool">automatización de marketing</a> hasta informes de ventas detallados.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.<br>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
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 <a href="https://www.pipedrive.com/fr/products/email-marketing-software/marketing-automation-tool">marketing automation</a> aux reporting analytiques.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
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 <a href="https://www.pipedrive.com/pt/products/email-marketing-software/marketing-automation-tool">automatização do marketing</a> aos relatórios detalhados sobre vendas.<br>
|
||||
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. <br><br>
|
||||
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. <br>
|
||||
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.<br>
|
||||
</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Start today</span>
|
||||
<span class="lang-de">Beginnen Sie heute</span>
|
||||
<span class="lang-es">Empieza hoy mismo</span>
|
||||
<span class="lang-fr">Commencez dès aujourd'hui</span>
|
||||
<span class="lang-br">Comece hoje mesmo</span>'
|
||||
%}
|
||||
{% 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" %}
|
||||
</main>
|
||||
|
||||
{% include "footer" %}
|
||||
{% endif %}
|
||||
|
||||
<script>
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? %}
|
||||
const redirectionLink = 'https://user-learn.pipedrive.com/app'
|
||||
document.querySelector('#redirect-between-academies').setAttribute('href', redirectionLink)
|
||||
{% endif %}
|
||||
</script>
|
||||
|
||||
@ -0,0 +1,63 @@
|
||||
{% comment %} skip-auth {% endcomment %}
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
{% else %}
|
||||
{% include "header" %}
|
||||
|
||||
<main class="video-tutorials">
|
||||
{% assign banner_title = '<span class="lang-en">Video Tutorials</span>
|
||||
<span class="lang-de">Video-Tutorials</span>
|
||||
<span class="lang-es">Tutoriales en vídeo</span>
|
||||
<span class="lang-fr">Tutoriels vidéo</span>
|
||||
<span class="lang-br">Tutoriais em vídeo</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">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.</span>
|
||||
<span class="lang-de">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.</span>
|
||||
<span class="lang-es">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.</span>
|
||||
<span class="lang-fr">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.</span>
|
||||
<span class="lang-br">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.</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Sign up for courses</span>
|
||||
<span class="lang-de">Für Kurse anmelden</span>
|
||||
<span class="lang-es">Inscríbete en los cursos</span>
|
||||
<span class="lang-fr">S'inscrire à des cours</span>
|
||||
<span class="lang-br">Inscreva-se nos cursos</span>'
|
||||
%}
|
||||
{% 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 = '<span class="lang-en">Unlock videos for free</span>
|
||||
<span class="lang-de">Videos kostenlos freischalten</span>
|
||||
<span class="lang-es">Desbloquear vídeos gratis</span>
|
||||
<span class="lang-fr">Débloquez des vidéos gratuitement</span>
|
||||
<span class="lang-br">Desbloquear vídeos de graça</span>'
|
||||
%}
|
||||
{% assign banner_text = "" %}
|
||||
{% assign banner_button_text = '<span class="lang-en">Sign up</span>
|
||||
<span class="lang-de">Anmelden</span>
|
||||
<span class="lang-es">Regístrate</span>
|
||||
<span class="lang-fr">S'inscrire</span>
|
||||
<span class="lang-br">Cadastre-se</span>'
|
||||
%}
|
||||
{% assign banner_button_link = "#sso-widget" %}
|
||||
{% include "green_banner_text_bg_image" %}
|
||||
{% endunless %}
|
||||
</main>
|
||||
|
||||
{% include "footer" %}
|
||||
{% endif %}
|
||||
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? %}
|
||||
<script>
|
||||
const redirectionLink = 'https://user-learn.pipedrive.com/app/video-tutorials'
|
||||
document.querySelector('#redirect-between-academies').setAttribute('href', redirectionLink)
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
@ -0,0 +1,90 @@
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
{% else %}
|
||||
{% include "header" %}
|
||||
|
||||
<main class="catalog">
|
||||
{% assign banner_title = '<span class="lang-en">Academy courses</span>
|
||||
<span class="lang-de">Academy-Kurse</span>
|
||||
<span class="lang-es">Cursos de la Academia</span>
|
||||
<span class="lang-fr">Cours de l'Académie</span>
|
||||
<span class="lang-br">Cursos da Academia</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">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.</span>
|
||||
<span class="lang-de">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.</span>
|
||||
<span class="lang-es">¡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</span>
|
||||
<span class="lang-fr">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.</span>
|
||||
<span class="lang-br">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.</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Unlock courses</span>
|
||||
<span class="lang-de">Kurse freischalten</span>
|
||||
<span class="lang-es">Desbloquear cursos</span>
|
||||
<span class="lang-fr">Débloquer les cours</span>
|
||||
<span class="lang-br">Desbloquear cursos</span>'
|
||||
%}
|
||||
{% 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 = '<span class="lang-en">How to get the most out of Pipedrive?</span>
|
||||
<span class="lang-de">Wie machen Sie das Beste aus Pipedrive?</span>
|
||||
<span class="lang-es">¿Cómo aprovechar al máximo Pipedrive?</span>
|
||||
<span class="lang-fr">Comment tirer pleinement parti de Pipedrive ?</span>
|
||||
<span class="lang-br">Como aproveitar o Pipedrive ao máximo?</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">
|
||||
Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from <a href="https://www.pipedrive.com/en/products/email-marketing-software/marketing-automation-tool">marketing automation</a> features to in-depth sales reports.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.<br>
|
||||
</span>
|
||||
<span class="lang-de">
|
||||
Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur <a href="https://www.pipedrive.com/de/products/email-marketing-software/marketing-automation-tool">Marketingautomatisierung</a> bis zu detaillierten Vertriebsberichten.<br>
|
||||
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. <br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
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 <a href="https://www.pipedrive.com/es/products/email-marketing-software/marketing-automation-tool">automatización de marketing</a> hasta informes de ventas detallados.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.<br>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
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 <a href="https://www.pipedrive.com/fr/products/email-marketing-software/marketing-automation-tool">marketing automation</a> aux reporting analytiques.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
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 <a href="https://www.pipedrive.com/pt/products/email-marketing-software/marketing-automation-tool">automatização do marketing</a> aos relatórios detalhados sobre vendas.<br>
|
||||
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. <br><br>
|
||||
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. <br>
|
||||
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.<br>
|
||||
</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Start today</span>
|
||||
<span class="lang-de">Beginnen Sie heute</span>
|
||||
<span class="lang-es">Empieza hoy mismo</span>
|
||||
<span class="lang-fr">Commencez dès aujourd'hui</span>
|
||||
<span class="lang-br">Comece hoje mesmo</span>'
|
||||
%}
|
||||
{% 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" %}
|
||||
</main>
|
||||
|
||||
{% include "footer" %}
|
||||
{% endif %}
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? %}
|
||||
<script>
|
||||
const redirectionLink = 'https://user-learn.pipedrive.com/app/catalog'
|
||||
document.querySelector('#redirect-between-academies').setAttribute('href', redirectionLink)
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
@ -0,0 +1,112 @@
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
{% else %}
|
||||
{% include "header" %}
|
||||
|
||||
<main class="homepage">
|
||||
{% 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 = '<span class="lang-en">Pipedrive Learn</span>
|
||||
<span class="lang-de">Pipedrive Learn</span>
|
||||
<span class="lang-es">Pipedrive Aprende</span>
|
||||
<span class="lang-fr">Pipedrive Learn</span>
|
||||
<span class="lang-br">Aprenda com o Pipedrive</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">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.</span>
|
||||
<span class="lang-de">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.</span>
|
||||
<span class="lang-es">¡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.</span>
|
||||
<span class="lang-fr">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.</span>
|
||||
<span class="lang-br">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.</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Register now</span>
|
||||
<span class="lang-de">Jetzt anmelden</span>
|
||||
<span class="lang-es">Regístrate ahora</span>
|
||||
<span class="lang-fr">Inscrivez-vous maintenant</span>
|
||||
<span class="lang-br">Cadastre-se agora</span>'
|
||||
%}
|
||||
{% 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 = '<span class="lang-en">How to get the most out of Pipedrive</span>
|
||||
<span class="lang-de">Wie Sie das Beste aus Pipedrive herausholen</span>
|
||||
<span class="lang-es">Cómo sacar el máximo partido a Pipedrive</span>
|
||||
<span class="lang-fr">Comment tirer le meilleur parti de Pipedrive</span>
|
||||
<span class="lang-br">Como aproveitar o Pipedrive ao máximo</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">
|
||||
Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from <a href="https://www.pipedrive.com/en/products/email-marketing-software/marketing-automation-tool">marketing automation</a> features to in-depth sales reports.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.<br>
|
||||
</span>
|
||||
<span class="lang-de">
|
||||
Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur <a href="https://www.pipedrive.com/de/products/email-marketing-software/marketing-automation-tool">Marketingautomatisierung</a> bis zu detaillierten Vertriebsberichten.<br>
|
||||
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. <br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
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 <a href="https://www.pipedrive.com/es/products/email-marketing-software/marketing-automation-tool">automatización de marketing</a> hasta informes de ventas detallados.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.<br>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
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 <a href="https://www.pipedrive.com/fr/products/email-marketing-software/marketing-automation-tool">marketing automation</a> aux reporting analytiques.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
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 <a href="https://www.pipedrive.com/pt/products/email-marketing-software/marketing-automation-tool">automatização do marketing</a> aos relatórios detalhados sobre vendas.<br>
|
||||
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. <br><br>
|
||||
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. <br>
|
||||
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.<br>
|
||||
</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Start today</span>
|
||||
<span class="lang-de">Beginnen Sie heute</span>
|
||||
<span class="lang-es">Empieza hoy mismo</span>
|
||||
<span class="lang-fr">Commencez dès aujourd'hui</span>
|
||||
<span class="lang-br">Comece hoje mesmo</span>'
|
||||
%}
|
||||
{% 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" %}
|
||||
</main>
|
||||
|
||||
{% include "footer" %}
|
||||
{% endif %}
|
||||
|
||||
<script>
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? %}
|
||||
const redirectionLink = 'https://user-learn.pipedrive.com/app'
|
||||
document.querySelector('#redirect-between-academies').setAttribute('href', redirectionLink)
|
||||
{% endif %}
|
||||
</script>
|
||||
|
||||
@ -0,0 +1,63 @@
|
||||
{% comment %} skip-auth {% endcomment %}
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
{% else %}
|
||||
{% include "header" %}
|
||||
|
||||
<main class="video-tutorials">
|
||||
{% assign banner_title = '<span class="lang-en">Video Tutorials</span>
|
||||
<span class="lang-de">Video-Tutorials</span>
|
||||
<span class="lang-es">Tutoriales en vídeo</span>
|
||||
<span class="lang-fr">Tutoriels vidéo</span>
|
||||
<span class="lang-br">Tutoriais em vídeo</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">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.</span>
|
||||
<span class="lang-de">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.</span>
|
||||
<span class="lang-es">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.</span>
|
||||
<span class="lang-fr">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.</span>
|
||||
<span class="lang-br">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.</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Sign up for courses</span>
|
||||
<span class="lang-de">Für Kurse anmelden</span>
|
||||
<span class="lang-es">Inscríbete en los cursos</span>
|
||||
<span class="lang-fr">S'inscrire à des cours</span>
|
||||
<span class="lang-br">Inscreva-se nos cursos</span>'
|
||||
%}
|
||||
{% 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 = '<span class="lang-en">Unlock videos for free</span>
|
||||
<span class="lang-de">Videos kostenlos freischalten</span>
|
||||
<span class="lang-es">Desbloquear vídeos gratis</span>
|
||||
<span class="lang-fr">Débloquez des vidéos gratuitement</span>
|
||||
<span class="lang-br">Desbloquear vídeos de graça</span>'
|
||||
%}
|
||||
{% assign banner_text = "" %}
|
||||
{% assign banner_button_text = '<span class="lang-en">Sign up</span>
|
||||
<span class="lang-de">Anmelden</span>
|
||||
<span class="lang-es">Regístrate</span>
|
||||
<span class="lang-fr">S'inscrire</span>
|
||||
<span class="lang-br">Cadastre-se</span>'
|
||||
%}
|
||||
{% assign banner_button_link = "#sso-widget" %}
|
||||
{% include "green_banner_text_bg_image" %}
|
||||
{% endunless %}
|
||||
</main>
|
||||
|
||||
{% include "footer" %}
|
||||
{% endif %}
|
||||
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? %}
|
||||
<script>
|
||||
const redirectionLink = 'https://user-learn.pipedrive.com/app/video-tutorials'
|
||||
document.querySelector('#redirect-between-academies').setAttribute('href', redirectionLink)
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
@ -7,8 +7,8 @@
|
||||
{% include "homepage_page_info" %}
|
||||
{% include "opinions" %}
|
||||
{% include 'homepage_faq' %}
|
||||
|
||||
{% assign banner_title = '<span class="lang-en">How to get the most out of Pipedrive?</span>
|
||||
|
||||
{% assign banner_title = '<span class="lang-en">How to get most out of Pipedrive?</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
@ -25,7 +25,6 @@
|
||||
<span class="lang-br"></span>' %}
|
||||
{% assign banner_button_link = "#sso-widget" %}
|
||||
{% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %}
|
||||
{% assign banner_image_alt = "Learn Pipedrive - CRM pipeline on the laptop" %}
|
||||
{% include "green_banner_image_alt" %}
|
||||
</main>
|
||||
|
||||
|
||||
@ -18,13 +18,13 @@
|
||||
<span class="lang-br"></span>' %}
|
||||
{% 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 = '<span class="lang-en">How to get the most out of Pipedrive?</span>
|
||||
|
||||
{% assign banner_title = '<span class="lang-en">How to get most out of Pipedrive?</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
@ -41,7 +41,6 @@
|
||||
<span class="lang-br"></span>' %}
|
||||
{% assign banner_button_link = "#sso-widget" %}
|
||||
{% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %}
|
||||
{% assign banner_image_alt = "Learn Pipedrive - CRM pipeline on the laptop" %}
|
||||
{% include "green_banner_image_alt" %}
|
||||
</main>
|
||||
|
||||
|
||||
@ -3,8 +3,8 @@
|
||||
<main class="homepage">
|
||||
{% include 'homepage_banner' %}
|
||||
{% include 'homepage_latest_courses' %}
|
||||
|
||||
{% assign banner_title = '<span class="lang-en">How to get the most out of Pipedrive?</span>
|
||||
|
||||
{% assign banner_title = '<span class="lang-en">How to get most out of Pipedrive?</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
|
||||
@ -1,8 +1,16 @@
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
{% else %}
|
||||
{% include "header" %}
|
||||
|
||||
<script>
|
||||
if (window.localStorage.getItem('academy-language') === "de") {
|
||||
window.location.href = "/app/de-homepage";
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
{% include "header" %}
|
||||
|
||||
<main class="homepage">
|
||||
{% if current_person.signed_in? %}
|
||||
{% assign new_person = true %}
|
||||
@ -22,54 +30,84 @@
|
||||
{% else %}
|
||||
{% include 'homepage_banner' %}
|
||||
{% include 'homepage_latest_courses' %}
|
||||
|
||||
|
||||
{% endif %}
|
||||
{% else %}
|
||||
{% assign banner_title = '<span class="lang-en">Pipedrive Learn</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
<span class="lang-de">Pipedrive Learn</span>
|
||||
<span class="lang-es">Pipedrive Aprende</span>
|
||||
<span class="lang-fr">Pipedrive Learn</span>
|
||||
<span class="lang-br">Aprenda com o Pipedrive</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">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.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
<span class="lang-de">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.</span>
|
||||
<span class="lang-es">¡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.</span>
|
||||
<span class="lang-fr">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.</span>
|
||||
<span class="lang-br">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.</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Register now</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
<span class="lang-de">Jetzt anmelden</span>
|
||||
<span class="lang-es">Regístrate ahora</span>
|
||||
<span class="lang-fr">Inscrivez-vous maintenant</span>
|
||||
<span class="lang-br">Cadastre-se agora</span>'
|
||||
%}
|
||||
{% 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 = '<span class="lang-en">How to get the most out of Pipedrive?</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
{% assign banner_text = '<span class="lang-en">Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from <a href="https://www.pipedrive.com/en/products/email-marketing-software/marketing-automation-tool">marketing automation</a> features to in-depth sales reports.<br>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.<br><br>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.<br>Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
|
||||
{% assign banner_title = '<span class="lang-en">How to get the most out of Pipedrive</span>
|
||||
<span class="lang-de">Wie Sie das Beste aus Pipedrive herausholen</span>
|
||||
<span class="lang-es">Cómo sacar el máximo partido a Pipedrive</span>
|
||||
<span class="lang-fr">Comment tirer le meilleur parti de Pipedrive</span>
|
||||
<span class="lang-br">Como aproveitar o Pipedrive ao máximo</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">
|
||||
Pipedrive CRM is overflowing with intelligent tools to improve your sales and marketing processes. Our CRM platform offers everything from <a href="https://www.pipedrive.com/en/products/email-marketing-software/marketing-automation-tool">marketing automation</a> features to in-depth sales reports.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Start using Pipedrive Learn today to make the most of your powerful CRM tool and keep the deals rolling in.<br>
|
||||
</span>
|
||||
<span class="lang-de">
|
||||
Das CRM von Pipedrive steckt voller intelligenter Funktionen, die Ihre Vertriebs- und Marketingprozesse verbessern. Unsere CRM-Plattform bietet Ihnen alles von Funktionen zur <a href="https://www.pipedrive.com/de/products/email-marketing-software/marketing-automation-tool">Marketingautomatisierung</a> bis zu detaillierten Vertriebsberichten.<br>
|
||||
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. <br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
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 <a href="https://www.pipedrive.com/es/products/email-marketing-software/marketing-automation-tool">automatización de marketing</a> hasta informes de ventas detallados.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
Comienza a usar Aprender con Pipedrive hoy mismo para aprovechar al máximo tu poderosa herramienta de CRM y mantener los tratos en marcha.<br>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
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 <a href="https://www.pipedrive.com/fr/products/email-marketing-software/marketing-automation-tool">marketing automation</a> aux reporting analytiques.<br>
|
||||
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.<br><br>
|
||||
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.<br>
|
||||
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.<br>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
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 <a href="https://www.pipedrive.com/pt/products/email-marketing-software/marketing-automation-tool">automatização do marketing</a> aos relatórios detalhados sobre vendas.<br>
|
||||
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. <br><br>
|
||||
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. <br>
|
||||
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.<br>
|
||||
</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Start today</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
<span class="lang-de">Beginnen Sie heute</span>
|
||||
<span class="lang-es">Empieza hoy mismo</span>
|
||||
<span class="lang-fr">Commencez dès aujourd'hui</span>
|
||||
<span class="lang-br">Comece hoje mesmo</span>'
|
||||
%}
|
||||
{% assign banner_button_link = "#sso-widget" %}
|
||||
{% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/example_alt_banner.png" %}
|
||||
{% assign banner_image_alt = "Learn Pipedrive - CRM pipeline on the laptop" %}
|
||||
{% include "green_banner_image_alt" %}
|
||||
</main>
|
||||
|
||||
|
||||
{% include "footer" %}
|
||||
{% endif %}
|
||||
|
||||
|
||||
@ -0,0 +1,101 @@
|
||||
{% comment %} skip-auth {% endcomment %}
|
||||
{% include 'header' %}
|
||||
|
||||
<main class="np-main np-box-container width-limit">
|
||||
<div class="login-wrapper">
|
||||
<h3 class="login-title">
|
||||
<span class="lang-en">Learn for free</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
</h3>
|
||||
<a class="login-redirection-button" href="/learners/sign_in">
|
||||
<span class="lang-en">Log in with</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span> <img class="login-redirection-button-logo" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/Logo.png" alt="pipedrive">
|
||||
</a>
|
||||
<div class="login-text-wrapper">
|
||||
<div class="login-text-strike"></div>
|
||||
<div class="login-text body-s">
|
||||
<span class="lang-en">Not a Pipedrive user? Log in below</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
{% include 'footer' %}
|
||||
|
||||
<style>
|
||||
.login-wrapper {
|
||||
padding: 40px;
|
||||
border: 2px solid #E4E6E9;
|
||||
border-radius: 4px;
|
||||
margin-top: 80px;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
.login-redirection-button-logo {
|
||||
height: 26px;
|
||||
align-self: center;
|
||||
}
|
||||
.login-redirection-button {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
padding: 22px 10px;
|
||||
background: #F4F5F6;
|
||||
margin-bottom: 40px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.login-title {
|
||||
text-align: center;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.login-text-wrapper {
|
||||
position: relative;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.login-text {
|
||||
background: white;
|
||||
width: fit-content;
|
||||
margin: auto;
|
||||
padding: 0 10px;
|
||||
max-width: 80%;
|
||||
text-align: center;
|
||||
}
|
||||
.login-text-strike {
|
||||
border-bottom: 1px solid #E4E6E9;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
z-index: -1;
|
||||
}
|
||||
.np-input {
|
||||
background: none;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
}
|
||||
.np-form-field {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
border-bottom: 2px solid #E4E6E9;
|
||||
}
|
||||
.login-icon {
|
||||
margin-left: 20px;
|
||||
}
|
||||
footer.main-footer .footer-links {
|
||||
display: none;
|
||||
}
|
||||
.np-box-container {
|
||||
height: unset;
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -2,28 +2,28 @@
|
||||
<div class="login-wrapper">
|
||||
<h3 class="login-title">
|
||||
<span class="lang-en">Learn for free</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Kostenlos Lernen</span>
|
||||
<span class="lang-es">Aprender gratis</span>
|
||||
<span class="lang-fr">Apprendre gratuitement</span>
|
||||
<span class="lang-br">Aprenda de graça</span>
|
||||
</h3>
|
||||
<div style="display: flex;">
|
||||
<a class="button-1 button-large" style="margin-bottom: 40px" href="https://learn.pipedrive.com/learners/sign_in">
|
||||
<span class="lang-en">Log in with Pipedrive</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Anmelden mit Pipedrive</span>
|
||||
<span class="lang-es">Iniciar sesión con Pipedrive</span>
|
||||
<span class="lang-fr">Se connecter avec Pipedrive</span>
|
||||
<span class="lang-br">Entrar com Pipedrive</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="login-text-wrapper">
|
||||
<div class="login-text-strike"></div>
|
||||
<div class="login-text body-s">
|
||||
<span class="lang-en">Not a Pipedrive user?<br>Create a free account to access courses</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Sie sind kein Pipedrive-Nutzer?<br>Erstellen Sie einen kostenlosen Account für den Zugriff auf unsere Kurse</span>
|
||||
<span class="lang-es">¿No eres usuario de Pipedrive?<br>Crea una cuenta gratuita para acceder a los cursos</span>
|
||||
<span class="lang-fr">Vous n'utilisez pas encore Pipedrive ?<br>Créez un compte gratuit pour accéder aux cours</span>
|
||||
<span class="lang-br">Não é usuário(a) do Pipedrive?<br>Crie uma conta gratuita para acessar os cursos</span>
|
||||
</div>
|
||||
</div>
|
||||
<form class="np-form np-box-content" action="{% route login %}" method="post" novalidate>
|
||||
@ -52,22 +52,28 @@
|
||||
id="learner_password"
|
||||
placeholder="Password"
|
||||
>
|
||||
<a class="forgotten-password body-s" href="{% route forgot_password_new %}">Forgot?</a>
|
||||
<a class="forgotten-password body-s" href="{% route forgot_password_new %}">
|
||||
<span class="lang-en">Forgot?</span>
|
||||
<span class="lang-de">Vergessen?</span>
|
||||
<span class="lang-es">¿Lo has olvidado?</span>
|
||||
<span class="lang-fr">Vous avez oublié ?</span>
|
||||
<span class="lang-br">Esqueceu?</span>
|
||||
</a>
|
||||
</div>
|
||||
<button type="submit" class="button-2 button-large np-form-action">
|
||||
<span class="lang-en">Sign In</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Anmelden</span>
|
||||
<span class="lang-es">Iniciar sesión</span>
|
||||
<span class="lang-fr">Se connecter</span>
|
||||
<span class="lang-br">Entrar</span>
|
||||
</button>
|
||||
{% if features.account_creation? %}
|
||||
<a class="np-form-link np-button-color" href="{% route sign_up %}">
|
||||
<span class="lang-en">Sign Up</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Registrieren</span>
|
||||
<span class="lang-es">Inscribirse</span>
|
||||
<span class="lang-fr">S'inscrire</span>
|
||||
<span class="lang-br">Cadastre-se</span>
|
||||
</a>
|
||||
{% endif %}
|
||||
{% if features.request_access? %}
|
||||
@ -147,3 +153,28 @@
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
addEventListener('DOMContentLoaded', () => {
|
||||
switch (window.localStorage.getItem('academy-language')) {
|
||||
case 'en':
|
||||
break;
|
||||
case 'de':
|
||||
document.querySelector('#learner_email').setAttribute('placeholder', 'Berufliche E-Mail-Adresse');
|
||||
document.querySelector('#learner_password').setAttribute('placeholder', 'Passwort');
|
||||
break;
|
||||
case 'es':
|
||||
document.querySelector('#learner_email').setAttribute('placeholder', 'Correo electrónico del trabajo');
|
||||
document.querySelector('#learner_password').setAttribute('placeholder', 'Contraseña');
|
||||
break;
|
||||
case 'fr':
|
||||
document.querySelector('#learner_email').setAttribute('placeholder', 'Adresse e-mail pro');
|
||||
document.querySelector('#learner_password').setAttribute('placeholder', 'Mot de passe');
|
||||
break;
|
||||
case 'br':
|
||||
document.querySelector('#learner_email').setAttribute('placeholder', 'E-mail de trabalho');
|
||||
document.querySelector('#learner_password').setAttribute('placeholder', 'Senha');
|
||||
break;
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
@ -91,23 +91,24 @@
|
||||
}
|
||||
{% endif %}
|
||||
})
|
||||
|
||||
form.addEventListener('submit', (event) => {
|
||||
event.preventDefault();
|
||||
const firstName = document.getElementById('first-name').value;
|
||||
const lastName = document.getElementById('last-name').value;
|
||||
const xhr = new XMLHttpRequest();
|
||||
xhr.open('POST', 'https://www.workato.com/webhooks/rest/bd1a1eb7-7e79-4208-a1db-8e9c7440bcc9/pipedrive-sso-setup-first-and-last-name');
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.send(JSON.stringify({
|
||||
"first-name": firstName,
|
||||
"last-name": lastName,
|
||||
"user-uuid": "{{ current_person.id }}"
|
||||
}));
|
||||
xhr.addEventListener('load', () => {
|
||||
window.sessionStorage.setItem('nameSetup', firstName);
|
||||
window.location.replace('/app');
|
||||
{% if current_school.properties.sandbox == false %}
|
||||
form.addEventListener('submit', (event) => {
|
||||
event.preventDefault();
|
||||
const firstName = document.getElementById('first-name').value;
|
||||
const lastName = document.getElementById('last-name').value;
|
||||
const xhr = new XMLHttpRequest();
|
||||
xhr.open('POST', 'https://www.workato.com/webhooks/rest/bd1a1eb7-7e79-4208-a1db-8e9c7440bcc9/pipedrive-sso-setup-first-and-last-name');
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.send(JSON.stringify({
|
||||
"first-name": firstName,
|
||||
"last-name": lastName,
|
||||
"user-uuid": "{{ current_person.id }}"
|
||||
}));
|
||||
xhr.addEventListener('load', () => {
|
||||
window.sessionStorage.setItem('nameSetup', firstName);
|
||||
window.location.replace('/app');
|
||||
});
|
||||
});
|
||||
});
|
||||
{% endif %}
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
<div class="login-wrapper">
|
||||
<h3 class="login-title">
|
||||
<span class="lang-en">Create an account</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Ein Konto erstellen</span>
|
||||
<span class="lang-es">Crear una cuenta</span>
|
||||
<span class="lang-fr">Créer un compte</span>
|
||||
<span class="lang-br">Criar uma conta</span>
|
||||
</h3>
|
||||
<form class="np-form np-box-content" action="{% route sign_up %}" method="post" novalidate>
|
||||
{% form_authenticity_token %}
|
||||
@ -64,35 +64,36 @@
|
||||
</button>
|
||||
<span class="np-form-terms">
|
||||
<span class="lang-en">By submitting this form you agree to the </span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Mit dem Absenden dieses Formulars erklären Sie sich mit den </span>
|
||||
<span class="lang-es">Al enviar este formulario acepta las </span>
|
||||
<span class="lang-fr">En soumettant ce formulaire, vous acceptez les </span>
|
||||
<span class="lang-br">Ao enviar este formulário, você concorda com os </span>
|
||||
<a class="np-form-link"
|
||||
target="_blank"
|
||||
href="{{ current_school.terms_of_service_url }}"
|
||||
>
|
||||
<span class="lang-en">Terms of Use</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Nutzungsbedingungen</span>
|
||||
<span class="lang-es">Condiciones de uso</span>
|
||||
<span class="lang-fr">conditions d'utilisation</span>
|
||||
<span class="lang-br">Termos de Uso</span>
|
||||
</a>
|
||||
<<span class="lang-de"> einverstanden</span>
|
||||
</span>
|
||||
<span class="np-form-terms" style="margin-top: 30px;">
|
||||
<span class="lang-en">Already have an account? </span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Sie haben bereits einen Account?</span>
|
||||
<span class="lang-es">¿Ya tienes una cuenta?</span>
|
||||
<span class="lang-fr">Vous avez déjà un compte ?</span>
|
||||
<span class="lang-br">Já tem uma conta?</span>
|
||||
<a class="np-form-link"
|
||||
href="/learners/sign_in"
|
||||
>
|
||||
<span class="lang-en">Log in</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
<span class="lang-de">Einloggen</span>
|
||||
<span class="lang-es">Conectarse</span>
|
||||
<span class="lang-fr">Connexion</span>
|
||||
<span class="lang-br">Entrar</span>
|
||||
</a>
|
||||
</span>
|
||||
</form>
|
||||
@ -140,3 +141,36 @@
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
addEventListener('DOMContentLoaded', () => {
|
||||
switch (window.localStorage.getItem('academy-language')) {
|
||||
case 'en':
|
||||
break;
|
||||
case 'de':
|
||||
document.querySelector('#learner_first_name').setAttribute('placeholder', 'Vorname');
|
||||
document.querySelector('#learner_last_name').setAttribute('placeholder', 'Nachname');
|
||||
document.querySelector('#learner_email').setAttribute('placeholder', '');
|
||||
document.querySelector('#learner_password').setAttribute('placeholder', 'Passwort');
|
||||
break;
|
||||
case 'es':
|
||||
document.querySelector('#learner_first_name').setAttribute('placeholder', 'Nombre de pila');
|
||||
document.querySelector('#learner_last_name').setAttribute('placeholder', 'Apellidos');
|
||||
document.querySelector('#learner_email').setAttribute('placeholder', '');
|
||||
document.querySelector('#learner_password').setAttribute('placeholder', 'Contraseña');
|
||||
break;
|
||||
case 'fr':
|
||||
document.querySelector('#learner_first_name').setAttribute('placeholder', 'Prénom');
|
||||
document.querySelector('#learner_last_name').setAttribute('placeholder', 'Nom de famille');
|
||||
document.querySelector('#learner_email').setAttribute('placeholder', '');
|
||||
document.querySelector('#learner_password').setAttribute('placeholder', 'Mot de passe');
|
||||
break;
|
||||
case 'br':
|
||||
document.querySelector('#learner_first_name').setAttribute('placeholder', 'Nome');
|
||||
document.querySelector('#learner_last_name').setAttribute('placeholder', 'Sobrenome');
|
||||
document.querySelector('#learner_email').setAttribute('placeholder', '');
|
||||
document.querySelector('#learner_password').setAttribute('placeholder', 'Senha');
|
||||
break;
|
||||
}
|
||||
})
|
||||
</script>
|
||||
@ -169,7 +169,7 @@ h6 {
|
||||
color: #413D99;
|
||||
border: none;
|
||||
}
|
||||
.button-2:hover, .button-2:focus {
|
||||
.button-2:hover, button-2:focus {
|
||||
background: #C4C2FF;
|
||||
color: #413D99;
|
||||
}
|
||||
@ -541,8 +541,6 @@ h6 {
|
||||
}
|
||||
}
|
||||
|
||||
{% comment %}
|
||||
We are currently turning off translation, so commenting this code
|
||||
/* translations */
|
||||
body.lang-en .lang-es, body.lang-en .lang-de, body.lang-en .lang-fr, body.lang-en .lang-br {
|
||||
display: none !important;
|
||||
@ -566,24 +564,3 @@ body:not(.lang-en):not(.lang-br):not(.lang-de):not(.lang-es):not(.lang-fr) .lang
|
||||
body:not(.lang-en):not(.lang-br):not(.lang-de):not(.lang-es):not(.lang-fr) .lang-br {
|
||||
display: none !important;
|
||||
}
|
||||
{% endcomment %}
|
||||
/* this code is added to turn off translations */
|
||||
.language-dropdown-wrapper {
|
||||
display: none !important;
|
||||
}
|
||||
.lang-es:not(body), .lang-de:not(body), .lang-br:not(body), .lang-fr:not(body) {
|
||||
display: none !important;
|
||||
}
|
||||
.footer-language-wrapper {
|
||||
display: none !important;
|
||||
}
|
||||
.side-menu-language {
|
||||
display: none !important;
|
||||
}
|
||||
.footer-bottom-row:not(.body-s) {
|
||||
justify-content: end;
|
||||
}
|
||||
.header-profile-image {
|
||||
margin-left: 20px;
|
||||
}
|
||||
/* end of translations changes */
|
||||
|
||||
@ -5,24 +5,26 @@
|
||||
{% include "header" %}
|
||||
|
||||
<main class="video-tutorials">
|
||||
{% assign banner_title = '<span class="lang-en">Video tutorials</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
{% assign banner_title = '<span class="lang-en">Video Tutorials</span>
|
||||
<span class="lang-de">Video-Tutorials</span>
|
||||
<span class="lang-es">Tutoriales en vídeo</span>
|
||||
<span class="lang-fr">Tutoriels vidéo</span>
|
||||
<span class="lang-br">Tutoriais em vídeo</span>'
|
||||
%}
|
||||
{% assign banner_text = '<span class="lang-en">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.</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
<span class="lang-de">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.</span>
|
||||
<span class="lang-es">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.</span>
|
||||
<span class="lang-fr">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.</span>
|
||||
<span class="lang-br">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.</span>'
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Sign up for courses</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
<span class="lang-de">Für Kurse anmelden</span>
|
||||
<span class="lang-es">Inscríbete en los cursos</span>
|
||||
<span class="lang-fr">S'inscrire à des cours</span>
|
||||
<span class="lang-br">Inscreva-se nos cursos</span>'
|
||||
%}
|
||||
{% assign banner_button_link = "#sso-widget" %}
|
||||
{% assign banner_image_url = "https://s3.amazonaws.com/static.northpass.com/pipedrive/homepage-card-webinars.webp" %}
|
||||
{% assign banner_image_alt = "Group of people sitting at a Pipedrive sales seminar" %}
|
||||
{% include "green_banner_image" %}
|
||||
|
||||
{% include "video_tutorials_courses" %}
|
||||
@ -32,16 +34,18 @@
|
||||
|
||||
{% unless current_person.signed_in? %}
|
||||
{% assign banner_title = '<span class="lang-en">Unlock videos for free</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
<span class="lang-de">Videos kostenlos freischalten</span>
|
||||
<span class="lang-es">Desbloquear vídeos gratis</span>
|
||||
<span class="lang-fr">Débloquez des vidéos gratuitement</span>
|
||||
<span class="lang-br">Desbloquear vídeos de graça</span>'
|
||||
%}
|
||||
{% assign banner_text = "" %}
|
||||
{% assign banner_button_text = '<span class="lang-en">Sign up</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>' %}
|
||||
<span class="lang-de">Anmelden</span>
|
||||
<span class="lang-es">Regístrate</span>
|
||||
<span class="lang-fr">S'inscrire</span>
|
||||
<span class="lang-br">Cadastre-se</span>'
|
||||
%}
|
||||
{% assign banner_button_link = "#sso-widget" %}
|
||||
{% include "green_banner_text_bg_image" %}
|
||||
{% endunless %}
|
||||
|
||||
@ -0,0 +1,42 @@
|
||||
{% if current_person.signed_in? == false and current_school.sso_active? == false %}
|
||||
<script> window.location.replace('/learners/sign_in')</script>
|
||||
{% else %}
|
||||
{% assign categories_uuids = "" %}
|
||||
{% assign categories_names = "" %}
|
||||
{% for course in courses.in_catalog %}
|
||||
{% if course.properties.webinar == true %}
|
||||
{% 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 "header" %}
|
||||
|
||||
<main>
|
||||
{% include 'webinars_hero_image' %}
|
||||
|
||||
<div class="courses container width-limit">
|
||||
{% include 'webinars_filters', uuids: categories_uuids, names: categories_names %}
|
||||
{% include 'webinars_courses', categories_uuids: categories_uuids, categories_names: categories_names %}
|
||||
|
||||
<div class="divider"></div>
|
||||
</div>
|
||||
|
||||
{% include 'opinions' %}
|
||||
{% include 'webinars_start_today' %}
|
||||
</main>
|
||||
|
||||
{% include "footer" %}
|
||||
{% endif %}
|
||||
|
||||
<style>
|
||||
.divider {
|
||||
background-color: #E1E1FF;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
}
|
||||
</style>
|
||||
@ -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 %}
|
||||
<script>
|
||||
window.location.replace('/app')
|
||||
</script>
|
||||
{% else %}
|
||||
<main class="np-main np-account">
|
||||
<div class="np-flex np-flex-center width-limit">
|
||||
<form class="np-form" method="post" id="name-form" novalidate>
|
||||
<div class="np-card">
|
||||
<div class="container">
|
||||
<h2 class="account-form-title">
|
||||
<span class="lang-en">Please fill out your name</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
</h2>
|
||||
<div class="row">
|
||||
<div class="col-xs-12 np-account-form">
|
||||
<div class="np-form-field">
|
||||
<label class="account-label" for="first-name">
|
||||
<span class="lang-en">First name</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span> *
|
||||
</label>
|
||||
<input class="np-input" id="first-name" autocomplete="off">
|
||||
</div>
|
||||
<div class="np-form-field">
|
||||
<label class="account-label" for="last-name">
|
||||
<span class="lang-en">Last name</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span> *
|
||||
</label>
|
||||
<input class="np-input" id="last-name" autocomplete="off">
|
||||
</div>
|
||||
<button type="submit" class="np-button np-button-big np-button-large-font np-form-action">
|
||||
<span class="lang-en">Save</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<style>
|
||||
.np-account {
|
||||
background: #F7F7FE;
|
||||
padding-top: 40px;
|
||||
padding-bottom: 40px;
|
||||
height: 100%;
|
||||
}
|
||||
.np-account .np-card {
|
||||
max-width: unset;
|
||||
width: 100%;
|
||||
}
|
||||
.np-account-form {
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
.account-form-title {
|
||||
color: var(--green);
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.np-account .np-card-container {
|
||||
box-shadow: none;
|
||||
background: none;
|
||||
}
|
||||
.np-input {
|
||||
background: #FFF;
|
||||
border-radius: 0;
|
||||
border: 1px solid #E1E1FF;
|
||||
margin-top: 5px;
|
||||
}
|
||||
.np-form-field {
|
||||
margin-bottom: 20px !important;
|
||||
}
|
||||
.np-account .np-form-action {
|
||||
margin: 20px 0 0;
|
||||
}
|
||||
.avatar-text > h4 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
button:disabled, button:hover:disabled {
|
||||
background: #FFE7E6;
|
||||
color: gray;
|
||||
cursor: default;
|
||||
}
|
||||
@media only screen and (min-width: 768px) {
|
||||
.np-account {
|
||||
padding-top: 80px;
|
||||
padding-bottom: 80px;
|
||||
}
|
||||
.np-account-form {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
const form = document.getElementById('name-form');
|
||||
|
||||
form.addEventListener('input', () => {
|
||||
const firstName = document.querySelector('#first-name').value;
|
||||
const lastName = document.querySelector('#last-name').value;
|
||||
const button = document.querySelector('button');
|
||||
button.disabled = !(firstName.length > 0 && lastName.length > 0);
|
||||
});
|
||||
|
||||
addEventListener('DOMContentLoaded', () => {
|
||||
let defaultLastName = "{{ current_person.last_name }}";
|
||||
let splitName = defaultLastName.split(' ');
|
||||
if (splitName.length >= 2) {
|
||||
document.querySelector('#last-name').setAttribute('value', splitName.pop());
|
||||
document.querySelector('#first-name').setAttribute('value', splitName.join(' '));
|
||||
}
|
||||
else {
|
||||
document.querySelector('#first-name').setAttribute('value', splitName[0]);
|
||||
document.querySelector('button').disabled = true;
|
||||
}
|
||||
})
|
||||
|
||||
form.addEventListener('submit', (event) => {
|
||||
event.preventDefault();
|
||||
const firstName = document.getElementById('first-name').value;
|
||||
const lastName = document.getElementById('last-name').value;
|
||||
const xhr = new XMLHttpRequest();
|
||||
xhr.open('POST', 'https://www.workato.com/webhooks/rest/bd1a1eb7-7e79-4208-a1db-8e9c7440bcc9/pipedrive-sso-setup-first-and-last-name');
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.send(JSON.stringify({
|
||||
"first-name": firstName,
|
||||
"last-name": lastName,
|
||||
"user-uuid": "{{ current_person.id }}"
|
||||
}));
|
||||
xhr.addEventListener('load', () => {
|
||||
window.sessionStorage.setItem('nameSetup', firstName);
|
||||
window.location.replace('/app');
|
||||
});
|
||||
});
|
||||
</script>
|
||||
{% endif %}
|
||||
BIN
Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/.DS_Store
vendored
Normal file
BIN
Custom_Templates/customer_templates/Pipedrive User-Learn - Prereg/.DS_Store
vendored
Normal file
Binary file not shown.
@ -0,0 +1,172 @@
|
||||
<div class="avatar-text">
|
||||
<h4 class="strong">
|
||||
<span class="lang-en">Profile picture</span>
|
||||
<span class="lang-de">Profilbild</span>
|
||||
<span class="lang-es">Foto de perfil</span>
|
||||
<span class="lang-fr">Photo de profil</span>
|
||||
<span class="lang-br">Foto do perfil</span>
|
||||
</h4>
|
||||
<div>
|
||||
<span class="lang-en">Photo helps personalize your account</span>
|
||||
<span class="lang-de">Personalisieren Sie Ihr Konto mit einem Foto</span>
|
||||
<span class="lang-es">La foto ayuda a personalizar su cuenta</span>
|
||||
<span class="lang-fr">La photo permet de personnaliser votre compte</span>
|
||||
<span class="lang-br">A foto ajuda a personalizar sua conta</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<img
|
||||
alt="default avatar"
|
||||
class="np-account-avatar-image"
|
||||
src="https://s3.amazonaws.com/static.northpass.com/pipedrive/Avatar.png"
|
||||
id="{{version}}_gravatar_img"
|
||||
{% unless form.use_gravatar? %}style="display: none"{% endunless %}
|
||||
/>
|
||||
<img
|
||||
alt="avatar"
|
||||
class="np-account-avatar-image"
|
||||
src="{% if form.secure_custom_avatar_url contains "https://secure.gravatar.com/avatar" %}https://s3.amazonaws.com/static.northpass.com/pipedrive/Avatar.png{% else %}{{ form.secure_custom_avatar_url }}{% endif %}"
|
||||
id="{{version}}_custom_avatar_img"
|
||||
{% if form.use_gravatar? %}style="display: none"{% endif %}
|
||||
/>
|
||||
|
||||
<div class="np-account-avatar-choice">
|
||||
<div class="np-form-field np-hidden">
|
||||
<label class="radio radio-before np-input-label" for="{{version}}_learner_use_gravatar_true">
|
||||
<span class="radio__input">
|
||||
<input
|
||||
id="{{version}}_learner_use_gravatar_true"
|
||||
name="learner[use_gravatar]"
|
||||
type="radio"
|
||||
value="true"
|
||||
{% if form.use_gravatar? %}checked{% endif %}
|
||||
/>
|
||||
<span class="np-button-color radio__control"></span>
|
||||
</span>
|
||||
<span class="radio__label"></span>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="np-form-field np-hidden">
|
||||
<label class="radio radio-before np-input-label" for="{{version}}_learner_use_gravatar_false">
|
||||
<span class="radio__input">
|
||||
<input
|
||||
id="{{version}}_learner_use_gravatar_false"
|
||||
name="learner[use_gravatar]"
|
||||
type="radio"
|
||||
value="false"
|
||||
{% unless form.use_gravatar? %}checked{% endunless %}
|
||||
/>
|
||||
<span class="np-button-color radio__control"></span>
|
||||
</span>
|
||||
<span class="radio__label">
|
||||
<span class="lang-en">Upload custom photo</span>
|
||||
<span class="lang-de">Foto hochladen</span>
|
||||
<span class="lang-es">Subir foto personalizada</span>
|
||||
<span class="lang-fr">Téléverser une photo personnalisée</span>
|
||||
<span class="lang-br">Carregar foto personalizada</span>
|
||||
</span>
|
||||
</label>
|
||||
</div>
|
||||
<button
|
||||
id="{{version}}_upload_avatar"
|
||||
type="button"
|
||||
class="upload-avatar-button{% if form.use_gravatar? %} np-hidden{% endif %}"
|
||||
>
|
||||
<i class="far fa-paperclip"></i>
|
||||
<span class="lang-en">Upload custom photo</span>
|
||||
<span class="lang-de">Foto hochladen</span>
|
||||
<span class="lang-es">Subir foto personalizada</span>
|
||||
<span class="lang-fr">Téléverser une photo personnalisée</span>
|
||||
<span class="lang-br">Carregar foto personalizada</span>
|
||||
</button>
|
||||
<div class="avatar-checkbox-wrapper" onclick="toggleGravatar()">
|
||||
<div class="avatar-checkbox {% if form.use_gravatar? %} avatar-checkbox-selected {% endif %}" id="gravatar-checkbox">
|
||||
<svg class="avatar-checkbox-mark" width="13" height="11" viewBox="0 0 13 11" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.7856 0.703847C11.2758 0.349665 11.9541 0.468775 12.3006 0.969886C12.6471 1.471 12.5305 2.16435 12.0403 2.51853C9.89294 4.07001 7.5045 6.58636 4.89298 10.0653C4.50422 10.5832 3.76456 10.6485 3.29465 10.2065L0.350947 7.43754C-0.0907947 7.02203 -0.119375 6.31912 0.287111 5.86757C0.693596 5.41601 1.38122 5.3868 1.82296 5.80231L3.89947 7.75555C6.35518 4.59965 8.64604 2.24967 10.7856 0.703847Z" fill="white"/>
|
||||
</svg>
|
||||
</div>
|
||||
<span>
|
||||
<span class="lang-en">Use default avatar</span>
|
||||
<span class="lang-de">Standard-Avatar verwenden</span>
|
||||
<span class="lang-es">Usar avatar predeterminado</span>
|
||||
<span class="lang-fr">Utiliser l'avatar par défaut</span>
|
||||
<span class="lang-br">Use o avatar padrão</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
#desktop_custom_avatar_img {
|
||||
border-radius: 50%;
|
||||
border: 2px solid #E4E6E9;
|
||||
}
|
||||
.avatar-text > h4 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.np-account-avatar-choice {
|
||||
margin-left: 0;
|
||||
}
|
||||
.avatar-checkbox {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border: 1px solid var(--black-digital);
|
||||
border-radius: 2px;
|
||||
}
|
||||
.avatar-checkbox-wrapper {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
.avatar-checkbox.avatar-checkbox-selected {
|
||||
border: none;
|
||||
background: var(--green);
|
||||
display: flex;
|
||||
}
|
||||
.avatar-checkbox-mark {
|
||||
display: none;
|
||||
margin: auto;
|
||||
}
|
||||
.avatar-checkbox.avatar-checkbox-selected .avatar-checkbox-mark {
|
||||
display: block;
|
||||
}
|
||||
.upload-avatar-button {
|
||||
border: none;
|
||||
background: none;
|
||||
color: #0070D6;
|
||||
margin-bottom: 20px;
|
||||
padding: 0;
|
||||
}
|
||||
.upload-avatar-button:hover {
|
||||
color: #0055a3;
|
||||
}
|
||||
.upload-avatar-button > i {
|
||||
rotate: -45deg;
|
||||
}
|
||||
#desktop_gravatar_img {
|
||||
border: 2px solid #E4E6E9;
|
||||
border-radius: 50%;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
function toggleGravatar() {
|
||||
let checkbox = document.querySelector('#gravatar-checkbox');
|
||||
checkbox.classList.toggle('avatar-checkbox-selected');
|
||||
document.querySelector('.upload-avatar-button').classList.toggle('np-hidden')
|
||||
if (checkbox.classList.contains('avatar-checkbox-selected')) {
|
||||
document.querySelector(('#desktop_learner_use_gravatar_true')).click()
|
||||
} else {
|
||||
document.querySelector(('#desktop_learner_use_gravatar_false')).click()
|
||||
}
|
||||
}
|
||||
{% if current_person.avatar_url contains "https://secure.gravatar.com/avatar" and form.use_gravatar? == false %}
|
||||
window.addEventListener("DOMContentLoaded", () => {
|
||||
let a = document.querySelector('#gravatar-checkbox');
|
||||
if (!a.classList.contains('avatar-checkbox-selected')) {
|
||||
a.click()
|
||||
}
|
||||
})
|
||||
{% endif %}
|
||||
</script>
|
||||
@ -0,0 +1,160 @@
|
||||
<div class="account-deletion">
|
||||
<h4 class="strong">
|
||||
<span class="lang-en">Delete your account</span>
|
||||
<span class="lang-de">Ihr Konto löschen</span>
|
||||
<span class="lang-es">Eliminar tu cuenta</span>
|
||||
<span class="lang-fr">Supprimer votre compte</span>
|
||||
<span class="lang-br">Exclua sua conta</span>
|
||||
</h4>
|
||||
<div class="account-deletion-description">
|
||||
<span class="lang-en">Your account will be permanently deleted and you will no longer be able to access any data or information associated with this account. This action cannot be undone.</span>
|
||||
<span class="lang-de">Ihr Account wird dauerhaft gelöscht und Sie haben keinen Zugriff mehr auf die mit diesem Konto verbundenen Daten und Informationen. Diese Aktion kann nicht rückgängig gemacht werden.</span>
|
||||
<span class="lang-es">Tu cuenta será eliminada permanentemente y ya no podrás acceder a ningún dato o información asociada a esta cuenta. Esta acción no se puede deshacer.</span>
|
||||
<span class="lang-fr">Votre compte sera définitivement supprimé et vous ne pourrez plus accéder aux données ou informations associées à ce compte. Cette action ne peut être annulée.</span>
|
||||
<span class="lang-br">Sua conta será excluída permanentemente e você não poderá mais acessar quaisquer dados ou informações associados a ela. Esta ação não pode ser desfeita.</span>
|
||||
</div>
|
||||
<div class="button-1 button-large button-deletion" onclick="
|
||||
document.querySelector('.account-deletion-popup-wrapper').classList.remove('np-hidden');
|
||||
document.querySelector('.account-deletion-popup').classList.remove('np-hidden');"
|
||||
>
|
||||
<span class="lang-en">Delete my account</span>
|
||||
<span class="lang-de">Meinen Account löschen</span>
|
||||
<span class="lang-es">Eliminar mi cuenta</span>
|
||||
<span class="lang-fr">Supprimer mon compte</span>
|
||||
<span class="lang-br">Excluir minha conta</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="account-deletion-popup-wrapper np-hidden" onclick="
|
||||
document.querySelector('.account-deletion-popup-wrapper').classList.add('np-hidden');
|
||||
document.querySelector('.account-deletion-popup').classList.add('np-hidden');"
|
||||
>
|
||||
</div>
|
||||
<div class="account-deletion-popup np-hidden">
|
||||
<div class="account-deletion-popup-confirmation">
|
||||
<label class="account-deletion-confirmation-label" for="account-deletion-confirmation-input">
|
||||
<span class="lang-en">To confirm account deletion, type <em>delete</em> in the field below.</span>
|
||||
<span class="lang-de">Um die Löschung des Accounts zu bestätigen, geben Sie <em>löschen</em> in das Feld unten ein.</span>
|
||||
<span class="lang-es">Para confirmar la eliminación de la cuenta, escribe <em>eliminar</em> en el siguiente campo.</span>
|
||||
<span class="lang-fr">Pour confirmer la suppression de votre compte, tapez <em>supprimer</em> dans le champ ci-dessous.</span>
|
||||
<span class="lang-br">Para confirmar a exclusão da conta, digite <em>excluir</em> no campo abaixo.</span>
|
||||
</label>
|
||||
<input id="account-deletion-confirmation-input" class="np-input" placeholder="delete" autocomplete="off">
|
||||
<div id="confirm-deletion" class="button-1 button-medium button-deletion button-deletion-disabled" onclick="sendDeleteRequest();">
|
||||
<span class="lang-en">Delete</span>
|
||||
<span class="lang-de">löschen</span>
|
||||
<span class="lang-es">Eliminar</span>
|
||||
<span class="lang-fr">Supprimer</span>
|
||||
<span class="lang-br">Excluir</span>
|
||||
</div>
|
||||
</div>
|
||||
<h5 class="account-deletion-popup-goodbye np-hidden">
|
||||
<span class="lang-en">Your account will be deleted shortly</span>
|
||||
<span class="lang-de">Ihr Account wird in Kürze gelöscht</span>
|
||||
<span class="lang-es">Tu cuenta será eliminada en breve</span>
|
||||
<span class="lang-fr">Votre compte sera supprimé dans les plus brefs délais</span>
|
||||
<span class="lang-br">Sua conta será excluída em breve</span>
|
||||
</h5>
|
||||
</div>
|
||||
<style>
|
||||
.account-deletion h4 {
|
||||
margin-top: 80px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.button-deletion {
|
||||
width: fit-content;
|
||||
background: #FFE7E6;
|
||||
color: #C7201B;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.button-deletion:hover {
|
||||
background: #FF5550;
|
||||
color: #FFF;
|
||||
}
|
||||
.button-deletion-disabled, .button-deletion-disabled:hover {
|
||||
background: #FFE7E6;
|
||||
color: gray;
|
||||
cursor: default;
|
||||
}
|
||||
.account-deletion-popup-wrapper {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
background: rgba(60, 60, 60, 0.5);
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
.account-deletion-popup {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
background: #FFF;
|
||||
border-radius: 4px;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
.account-deletion-popup-confirmation {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 40px;
|
||||
gap: 20px;
|
||||
}
|
||||
.account-deletion-popup-goodbye {
|
||||
padding: 60px;
|
||||
}
|
||||
#account-deletion-confirmation-input::placeholder {
|
||||
font-style: italic;
|
||||
color: #999FA7;
|
||||
opacity: 1;
|
||||
}
|
||||
@media only screen and (min-width: 500px) {
|
||||
.account-deletion-popup-confirmation {
|
||||
min-width: 450px;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 1024px) {
|
||||
.account-deletion h4 {
|
||||
margin-top: 40px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
{% if current_school.properties.sandbox == false %}
|
||||
const deletionInput = document.getElementById('account-deletion-confirmation-input');
|
||||
|
||||
deletionInput.addEventListener('input', () => {
|
||||
const button = document.querySelector('#confirm-deletion');
|
||||
if (deletionInput.value.toLowerCase() !== 'delete') {
|
||||
button.classList.add('button-deletion-disabled');
|
||||
} else {
|
||||
button.classList.remove('button-deletion-disabled');
|
||||
}
|
||||
});
|
||||
|
||||
function sendDeleteRequest() {
|
||||
document.querySelector('.account-deletion-popup-confirmation').classList.add('np-hidden');
|
||||
document.querySelector('.account-deletion-popup-goodbye').classList.remove('np-hidden');
|
||||
const personUUID = '{{ current_person.id }}';
|
||||
const personEmail = '{{ current_person.email }}'
|
||||
const personTime = '{{ current_person.created_at | replace_first: " ", "T" | replace_first: " +0000", ".000000+00:00" }}';
|
||||
const xhr = new XMLHttpRequest();
|
||||
|
||||
{% if current_school.sso_active? %}
|
||||
var url = 'https://www.workato.com/webhooks/rest/bd1a1eb7-7e79-4208-a1db-8e9c7440bcc9/pipedrive-sso-delete-myself'
|
||||
{% else %}
|
||||
var url = 'https://www.workato.com/webhooks/rest/bd1a1eb7-7e79-4208-a1db-8e9c7440bcc9/pipedrive-open-delete-myself'
|
||||
{% endif %}
|
||||
xhr.open('POST', url);
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.send(JSON.stringify({
|
||||
"personUUID": personUUID,
|
||||
"personEmail": personEmail,
|
||||
"personTime": personTime
|
||||
}));
|
||||
xhr.addEventListener('load', () => {
|
||||
setTimeout(() => {
|
||||
window.location.replace('/learners/sign_out');
|
||||
}, 3000);
|
||||
});
|
||||
}
|
||||
{% endif %}
|
||||
</script>
|
||||
@ -0,0 +1,31 @@
|
||||
<form class="np-form" action="{{ form.options.action }}" method="post" id="desktop_edit_learner" novalidate>
|
||||
<input type="hidden" name="_method" value="{{ form.options.http_method }}">
|
||||
{% form_authenticity_token %}
|
||||
<div class="np-card">
|
||||
<div class="container">
|
||||
<h1 class="account-form-title">
|
||||
<span class="lang-en">My profile</span>
|
||||
<span class="lang-de">Mein Profil</span>
|
||||
<span class="lang-es">Mi perfil</span>
|
||||
<span class="lang-fr">Mon profil</span>
|
||||
<span class="lang-br">Meu perfil</span>
|
||||
</h1>
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-7 np-account-form">
|
||||
{% render "account_form", form: form, version: "desktop" %}
|
||||
<button type="submit" class="np-button np-button-big np-button-large-font np-form-action">
|
||||
<span class="lang-en">Save profile</span>
|
||||
<span class="lang-de">Profil speichern</span>
|
||||
<span class="lang-es">Guardar perfil</span>
|
||||
<span class="lang-fr">Sauvegarder le profil</span>
|
||||
<span class="lang-br">Salvar perfil</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="col-xs-12 col-md-5">
|
||||
{% include "account_avatar", version: "desktop" %}
|
||||
{% include "account_deletion" %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
@ -0,0 +1,176 @@
|
||||
<div class="np-form-field {% if form.errors contains 'email' %}np-account-form-field-error{% endif %}">
|
||||
<label class="account-label" for="{{version}}_learner_email">
|
||||
<span class="lang-en">Email</span>
|
||||
<span class="lang-de">E-Mail</span>
|
||||
<span class="lang-es">Correo electrónico</span>
|
||||
<span class="lang-fr">E-mail</span>
|
||||
<span class="lang-br">Email</span> *
|
||||
</label>
|
||||
<input
|
||||
{% if form.options.invite? %} disabled {% endif %}
|
||||
autofocus="autofocus"
|
||||
class="np-input"
|
||||
id="{{version}}_learner_email"
|
||||
name="learner[email]"
|
||||
type="email"
|
||||
value="{{ form.email }}"
|
||||
/>
|
||||
</div>
|
||||
<div class="np-form-field {% if form.errors contains 'first_name' %}np-account-form-field-error{% endif %}">
|
||||
<label class="account-label" for="{{version}}_learner_first_name">
|
||||
<span class="lang-en">First name</span>
|
||||
<span class="lang-de">Vorname</span>
|
||||
<span class="lang-es">Nombre de pila</span>
|
||||
<span class="lang-fr">Prénom</span>
|
||||
<span class="lang-br">Nome</span> *
|
||||
</label>
|
||||
<input
|
||||
class="np-input"
|
||||
id="{{version}}_learner_first_name"
|
||||
name="learner[first_name]"
|
||||
value="{{ form.first_name }}"
|
||||
/>
|
||||
</div>
|
||||
<div class="np-form-field {% if form.errors contains 'last_name' %}np-account-form-field-error{% endif %}">
|
||||
<label class="account-label" for="{{version}}_learner_last_name">
|
||||
<span class="lang-en">Last name</span>
|
||||
<span class="lang-de">Nachname</span>
|
||||
<span class="lang-es">Apellidos</span>
|
||||
<span class="lang-fr">Nom de famille</span>
|
||||
<span class="lang-br">Sobrenome</span> *
|
||||
</label>
|
||||
<input
|
||||
class="np-input"
|
||||
id="{{version}}_learner_last_name"
|
||||
name="learner[last_name]"
|
||||
value="{{ form.last_name }}"
|
||||
/>
|
||||
</div>
|
||||
<div class="np-form-field {% if form.errors contains 'display_name' %}np-account-form-field-error{% endif %}" style="display: none">
|
||||
<label class="account-label" for="{{version}}_learner_display_name">
|
||||
<span class="lang-en">Display name</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
</label>
|
||||
<input
|
||||
class="np-input"
|
||||
id="{{version}}_learner_display_name"
|
||||
name="learner[display_name]"
|
||||
value="{{ form.display_name }}"
|
||||
/>
|
||||
</div>
|
||||
|
||||
{% unless form.options.invite? %}
|
||||
<div class="np-form-field {% if form.errors contains 'current_password' %}np-account-form-field-error{% endif %}">
|
||||
<label class="account-label" for="{{version}}_learner_current_password">
|
||||
<span class="lang-en">Current password</span>
|
||||
<span class="lang-de">Aktuelles Passwort</span>
|
||||
<span class="lang-es">Contraseña actual</span>
|
||||
<span class="lang-fr">Mot de passe actuel</span>
|
||||
<span class="lang-br">Senha atual</span>
|
||||
</label>
|
||||
<input
|
||||
class="np-input"
|
||||
id="{{version}}_learner_current_password"
|
||||
name="learner[current_password]"
|
||||
type="password"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="np-form-field {% if form.errors contains 'password' %}np-account-form-field-error{% endif %}">
|
||||
<label class="account-label" for="{{version}}_learner_password">
|
||||
<span class="lang-en">New password</span>
|
||||
<span class="lang-de">Neues Passwort</span>
|
||||
<span class="lang-es">Nueva contraseña</span>
|
||||
<span class="lang-fr">Nouveau mot de passe</span>
|
||||
<span class="lang-br">Nova senha</span>
|
||||
</label>
|
||||
<input
|
||||
class="np-input"
|
||||
id="{{version}}_learner_password"
|
||||
name="learner[password]"
|
||||
type="password"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="np-form-field {% if form.errors contains 'password_confirmation' %}np-account-form-field-error{% endif %}">
|
||||
<label class="account-label" for="{{version}}_learner_password_confirmation">
|
||||
<span class="lang-en">Confirm new password</span>
|
||||
<span class="lang-de">Passwort bestätigen</span>
|
||||
<span class="lang-es">Confirmar nueva contraseña</span>
|
||||
<span class="lang-fr">Confirmer le mot de passe</span>
|
||||
<span class="lang-br">Confirmar nova senha</span>
|
||||
</label>
|
||||
<input
|
||||
class="np-input"
|
||||
id="{{version}}_learner_password_confirmation"
|
||||
name="learner[password_confirmation]"
|
||||
type="password"
|
||||
/>
|
||||
</div>
|
||||
{% endunless %}
|
||||
|
||||
{% if form.options.invite? %}
|
||||
<div class="np-form-field {% if form.errors contains 'password' %}np-account-form-field-error{% endif %}">
|
||||
<label class="account-label" for="{{version}}_learner_password">
|
||||
<span class="lang-en">Password</span>
|
||||
<span class="lang-de">Passwort</span>
|
||||
<span class="lang-es">Contraseña</span>
|
||||
<span class="lang-fr">Mot de passe</span>
|
||||
<span class="lang-br">Senha</span> *
|
||||
</label>
|
||||
<input
|
||||
class="np-input"
|
||||
id="{{version}}_learner_password"
|
||||
name="learner[password]"
|
||||
type="password"
|
||||
/>
|
||||
</div>
|
||||
|
||||
{% if form.terms_of_service_required? %}
|
||||
<div class="np-form-field terms-of-service {% if form.errors contains 'terms_of_service_accepted' %}np-account-form-field-error{% endif %}">
|
||||
<input
|
||||
id="{{version}}_learner_terms_of_service"
|
||||
name="learner[terms_of_service_accepted]"
|
||||
type="checkbox"
|
||||
/>
|
||||
<div class="label">
|
||||
<span class="lang-en">{% t .terms_of_service %}</span>
|
||||
<span class="lang-de"></span>
|
||||
<span class="lang-es"></span>
|
||||
<span class="lang-fr"></span>
|
||||
<span class="lang-br"></span>
|
||||
</div>
|
||||
</div>
|
||||
{% else %}
|
||||
<div class="np-margin-top">
|
||||
<span class="np-form-terms">
|
||||
<span class="lang-en">By submitting this form you agree to the </span>
|
||||
<span class="lang-de">Mit dem Absenden dieses Formulars erklären Sie sich mit den </span>
|
||||
<span class="lang-es">Al enviar este formulario acepta las </span>
|
||||
<span class="lang-fr">En soumettant ce formulaire, vous acceptez les </span>
|
||||
<span class="lang-br">Ao enviar este formulário, você concorda com os </span>
|
||||
<a
|
||||
class="np-form-link np-button-color"
|
||||
target="_blank"
|
||||
href={{ form.terms_of_service_url }}
|
||||
>
|
||||
<span class="lang-en">Terms of Use</span>
|
||||
<span class="lang-de">Nutzungsbedingungen einverstanden</span>
|
||||
<span class="lang-es">Condiciones de uso</span>
|
||||
<span class="lang-fr">conditions d'utilisation.</span>
|
||||
<span class="lang-br">Termos de Uso</span>
|
||||
</a>
|
||||
</span>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<input
|
||||
id="{{version}}_invite_token"
|
||||
name="learner[token]"
|
||||
value="{{ form.invite_token }}"
|
||||
type="hidden"
|
||||
/>
|
||||
{% endif %}
|
||||
@ -0,0 +1,75 @@
|
||||
{% assign activities_count = 0 %}
|
||||
{% for section in course.sections %}
|
||||
{% assign activities_count = activities_count | plus: section.activities.size %}
|
||||
{% endfor %}
|
||||
{% capture course_path %}{% route course, id: course.id %}{% endcapture %}
|
||||
{% assign scaled_image_url = "" | append: course.image_url | replace: "resize=width:819,height:503", "resize=width:912,height:503" %}
|
||||
|
||||
<div class="course-card col-xs-12 col-sm-6 col-lg-4" language="{{course.properties.course_language}}" item-categories="{{ course.categories | map: 'id' | join: " " }}">
|
||||
<a class="course-card-wrapper" href="{{ course_path }}">
|
||||
{% if course.ribbon and course.ribbon.size > 0 %}
|
||||
{% assign course_ribbon_uppercase = course.ribbon | upcase %}
|
||||
<div class="course-card-ribbon body-xs {% if course_ribbon_uppercase == 'NEW' %}ribbon-blue{% endif %}">
|
||||
{{ course.ribbon }}
|
||||
</div>
|
||||
{% endif %}
|
||||
<img class="course-card-image" src="{{ scaled_image_url }}" alt="{{ course.name }}">
|
||||
<div class="course-card-content">
|
||||
<div class="course-card-info body-xs">
|
||||
{{ activities_count }}
|
||||
{% if activities_count == 1 %}
|
||||
<span class="lang-en">lesson</span>
|
||||
<span class="lang-de">Lektion</span>
|
||||
<span class="lang-es">lección</span>
|
||||
<span class="lang-fr">leçon</span>
|
||||
<span class="lang-br">lição</span>
|
||||
{% else %}
|
||||
<span class="lang-en">lessons</span>
|
||||
<span class="lang-de">Lektionen</span>
|
||||
<span class="lang-es">lecciones</span>
|
||||
<span class="lang-fr">leçons</span>
|
||||
<span class="lang-br">lições</span>
|
||||
{% endif %}
|
||||
<span class="course-card-info-separator">|</span>
|
||||
{% if course.properties.course_time != 'NULL' %}
|
||||
{{ course.properties.course_time }}
|
||||
{% endif %}
|
||||
</div>
|
||||
<h5 class="course-card-title">
|
||||
{{ course.name }}
|
||||
</h5>
|
||||
<div class="course-card-description">
|
||||
{{ course.short_description }}
|
||||
</div>
|
||||
<div class="course-card-footer">
|
||||
{% if course.started? %}
|
||||
<div class="course-card-progress">
|
||||
<div class="course-card-progress-value body-s strong">
|
||||
{{ course.progress }}%
|
||||
</div>
|
||||
<div class="course-card-progress-bar">
|
||||
<div class="course-card-progress-bar-fill" style="width: {{ course.progress }}%"></div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="course-card-button button-wrapper">
|
||||
<div class="button-2 button-medium">
|
||||
{% if course.started? %}
|
||||
<span class="lang-en">Continue</span>
|
||||
<span class="lang-de">Weiter</span>
|
||||
<span class="lang-es">Continuar</span>
|
||||
<span class="lang-fr">Continuer</span>
|
||||
<span class="lang-br">Continuar</span>
|
||||
{% else %}
|
||||
<span class="lang-en">Take this course</span>
|
||||
<span class="lang-de">Diesen Kurs belegen</span>
|
||||
<span class="lang-es">Tomar este curso</span>
|
||||
<span class="lang-fr">Suivre ce cours</span>
|
||||
<span class="lang-br">Faça este curso</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
@ -0,0 +1,81 @@
|
||||
{% assign activities_count = 0 %}
|
||||
{% for section in course.sections %}
|
||||
{% assign activities_count = activities_count | plus: section.activities.size %}
|
||||
{% endfor %}
|
||||
|
||||
<a class="homepage-card-wrapper" language="{{course.properties.course_language}}" href="{% route course, id: course.id %}">
|
||||
<div class="homepage-card">
|
||||
<img class="homepage-card-image" src="{{ course.image_url }}" alt="{{ course.name }}">
|
||||
<div class="homepage-card-body-wrapper">
|
||||
{% unless course.ribbon == "VIDEO" %}
|
||||
<div class="homepage-card-activities body-s">
|
||||
{{ activities_count }}
|
||||
{% if activities_count == 1 %}
|
||||
<span class="lang-en">lesson</span>
|
||||
<span class="lang-de">Lektion</span>
|
||||
<span class="lang-es">lección</span>
|
||||
<span class="lang-fr">leçon</span>
|
||||
<span class="lang-br">lição</span>
|
||||
{% else %}
|
||||
<span class="lang-en">lessons</span>
|
||||
<span class="lang-de">Lektionen</span>
|
||||
<span class="lang-es">lecciones</span>
|
||||
<span class="lang-fr">leçons</span>
|
||||
<span class="lang-br">lições</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endunless %}
|
||||
<div class="homepage-card-body">
|
||||
<div class="homepage-card-body-left">
|
||||
<div class="homepage-card-title strong">
|
||||
{{ course.name }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="homepage-card-button button-2 button-medium">
|
||||
{% if course.ribbon != "VIDEO" %}
|
||||
{% if course.started? %}
|
||||
<span class="lang-en">Continue</span>
|
||||
<span class="lang-de">Weiter</span>
|
||||
<span class="lang-es">Continúe en</span>
|
||||
<span class="lang-fr">Continuer</span>
|
||||
<span class="lang-br">Continuar</span>
|
||||
{% else %}
|
||||
<span class="lang-en">Start</span>
|
||||
<span class="lang-de">Start</span>
|
||||
<span class="lang-es">Inicio</span>
|
||||
<span class="lang-fr">Commencer</span>
|
||||
<span class="lang-br">Início</span>
|
||||
{% endif %}
|
||||
{% else %}
|
||||
<span class="lang-en">Watch video</span>
|
||||
<span class="lang-de">Video ansehen</span>
|
||||
<span class="lang-es">Ver el vídeo</span>
|
||||
<span class="lang-fr">Regarder la vidéo</span>
|
||||
<span class="lang-br">Assista ao vídeo</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="homepage-card-footer">
|
||||
<div class="homepage-card-info">
|
||||
{% unless course.ribbon == "VIDEO" %}
|
||||
<div class="homepage-card-progress-value body-s strong">
|
||||
{{ course.progress }}%
|
||||
</div>
|
||||
{% endunless %}
|
||||
<div class="homepage-card-time body-s">
|
||||
<span class="lang-en">Total length</span>
|
||||
<span class="lang-de">Gesamtlänge</span>
|
||||
<span class="lang-es">Longitud total</span>
|
||||
<span class="lang-fr">Durée totale</span>
|
||||
<span class="lang-br">Duração total</span>: {{ course.properties.course_time }}
|
||||
</div>
|
||||
</div>
|
||||
{% unless course.ribbon == "VIDEO" %}
|
||||
<div class="homepage-card-progress-bar">
|
||||
<div class="homepage-card-progress-bar-fill" style="width: {{ course.progress }}%;"></div>
|
||||
</div>
|
||||
{% endunless %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
@ -0,0 +1,18 @@
|
||||
<div class="course-card col-xs-12 col-sm-6 col-lg-4">
|
||||
<a class="course-card-wrapper" href="{{ card_button_link }}">
|
||||
<img class="course-card-image" style="width: 100px; height: 100px;" src="{{ card_image }}" alt="{{ card_alt_text }}">
|
||||
<div class="course-card-content">
|
||||
<h5 class="course-card-title">
|
||||
{{ card_title }}
|
||||
</h5>
|
||||
<div class="course-card-description">
|
||||
{{ card_description }}
|
||||
</div>
|
||||
<div class="course-card-button button-wrapper">
|
||||
<div class="button-2 button-medium">
|
||||
{{ card_button_text }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
@ -0,0 +1,42 @@
|
||||
{% assign activities_count = 0 %}
|
||||
{% for section in course.sections %}
|
||||
{% assign activities_count = activities_count | plus: section.activities.size %}
|
||||
{% endfor %}
|
||||
{% capture course_path %}{% route course, id: course.id %}{% endcapture %}
|
||||
{% assign scaled_image_url = "" | append: course.image_url | replace: "resize=width:819,height:503", "resize=width:912,height:503" %}
|
||||
|
||||
<div class="course-card video-card col-xs-12 col-sm-6 col-lg-4" language="{{course.properties.course_language}}">
|
||||
<a class="course-card-wrapper" href="{{ course_path }}">
|
||||
{% if course.properties.course_time != 'NULL' %}
|
||||
<div class="video-card-ribbon">
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 15.5C11.866 15.5 15 12.366 15 8.5C15 4.63401 11.866 1.5 8 1.5C4.13401 1.5 1 4.63401 1 8.5C1 12.366 4.13401 15.5 8 15.5ZM16 8.5C16 12.9183 12.4183 16.5 8 16.5C3.58172 16.5 0 12.9183 0 8.5C0 4.08172 3.58172 0.5 8 0.5C12.4183 0.5 16 4.08172 16 8.5ZM6 4C6.27614 4 6.5 4.22386 6.5 4.5V11.6L11.0982 8.73891L7.5 6C7.27496 5.83997 7.22225 5.5278 7.38228 5.30276C7.54232 5.07772 7.85448 5.02501 8.07952 5.18504L12.2898 8.35919C12.4261 8.45614 12.5049 8.61484 12.4998 8.78205C12.4946 8.94926 12.4062 9.10282 12.2642 9.19119L6.26415 12.9245C6.10998 13.0205 5.91591 13.0253 5.75718 12.9371C5.59845 12.8489 5.5 12.6816 5.5 12.5V4.5C5.5 4.22386 5.72386 4 6 4Z" fill="white"/>
|
||||
</svg>
|
||||
<div class="video-card-ribbon-text body-s">
|
||||
{{ course.properties.course_time }}
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
<img class="course-card-image" src="{{ scaled_image_url }}" alt="{{ course.name }}">
|
||||
<div class="course-card-content">
|
||||
<h5 class="course-card-title">
|
||||
{{ course.name }}
|
||||
</h5>
|
||||
<div class="course-card-description">
|
||||
{{ course.short_description }}
|
||||
</div>
|
||||
|
||||
<div class="course-card-footer">
|
||||
<div class="course-card-button button-wrapper">
|
||||
<div class="button-2 button-medium">
|
||||
<span class="lang-en">Watch video</span>
|
||||
<span class="lang-de">Video ansehen</span>
|
||||
<span class="lang-es">Ver el vídeo</span>
|
||||
<span class="lang-fr">Regarder la vidéo</span>
|
||||
<span class="lang-br">Assista ao vídeo</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
@ -0,0 +1,242 @@
|
||||
{% 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 %}
|
||||
{% endfor %}
|
||||
{% assign categories_uuids = categories_uuids | split: "|||" | uniq %}
|
||||
{% assign categories_names = categories_names | split: "|||" | uniq %}
|
||||
|
||||
<div class="courses-hidden np-hidden">
|
||||
{% for x in (1..categories_uuids.size) %}
|
||||
{% assign number_of_videos = 0 %}
|
||||
{% assign y = x | minus: 1 %}
|
||||
{% assign category_uuid = categories_uuids | slice: y %}
|
||||
<section class="courses-section" item-categories="{{ category_uuid }}">
|
||||
<div class="courses-section-header">
|
||||
<h3 class="courses-title strong">
|
||||
{% assign category_name = categories_names | slice: y %}
|
||||
|
||||
{% if category_name contains 'Pipedrive courses' %}
|
||||
<span class="lang-en">Pipedrive courses</span>
|
||||
<span class="lang-de">Pipedrive Kurse</span>
|
||||
<span class="lang-es">Cursos de Pipedrive</span>
|
||||
<span class="lang-fr">Cours de Pipedrive</span>
|
||||
<span class="lang-br">Cursos de Pipedrive</span>
|
||||
{% elsif category_name contains 'Sales courses' %}
|
||||
<span class="lang-en">Sales courses</span>
|
||||
<span class="lang-de">Vertriebskurse</span>
|
||||
<span class="lang-es">Cursos de Ventas</span>
|
||||
<span class="lang-fr">Cours de Vente</span>
|
||||
<span class="lang-br">Cursos de Vendas</span>
|
||||
{% elsif category_name contains 'Marketing courses' %}
|
||||
<span class="lang-en">Marketing courses</span>
|
||||
<span class="lang-de">Marketingkurse</span>
|
||||
<span class="lang-es">Cursos de Marketing</span>
|
||||
<span class="lang-fr">Cours de Marketing</span>
|
||||
<span class="lang-br">Cursos de Marketing</span>
|
||||
{% elsif category_name contains 'Spanish' %}
|
||||
<span class="lang-en">Spanish</span>
|
||||
<span class="lang-de">Spanisch</span>
|
||||
<span class="lang-es">Español</span>
|
||||
<span class="lang-fr">Espagnol</span>
|
||||
<span class="lang-br">Espanhol</span>
|
||||
{% else %}
|
||||
{{ category_name }}
|
||||
{% endif %}
|
||||
</h3>
|
||||
<div class="courses-section-button" onclick="this.parentNode.parentNode.classList.toggle('courses-section-expanded')">
|
||||
<span class="courses-section-button-hide">
|
||||
<span class="lang-en">Show less</span>
|
||||
<span class="lang-de">Weniger anzeigen</span>
|
||||
<span class="lang-es">Mostrar menos</span>
|
||||
<span class="lang-fr">Montrer moins</span>
|
||||
<span class="lang-br">Mostrar menos</span>
|
||||
</span>
|
||||
<span class="courses-section-button-expand">
|
||||
<span class="lang-en">View all</span>
|
||||
<span class="lang-de">Alle anzeigen</span>
|
||||
<span class="lang-es">Ver todos</span>
|
||||
<span class="lang-fr">Tout afficher</span>
|
||||
<span class="lang-br">Ver tudo</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="courses-list row">
|
||||
{% for course in courses.in_catalog %}
|
||||
{% assign course_categories = course.categories | map: 'id' %}
|
||||
{% if course.ribbon != "VIDEO" and course.properties.featured == false %}
|
||||
{% for cat in course_categories %}
|
||||
{% if category_uuid contains cat %}
|
||||
{% assign number_of_videos = number_of_videos | plus: 1 %}
|
||||
{% include "cards_course" %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% if number_of_videos <= 3 %}
|
||||
<style>
|
||||
{% if number_of_videos == 1 %}
|
||||
.courses-section[item-categories="{{ category_uuid }}"] .courses-section-button {
|
||||
display: none;
|
||||
}
|
||||
{% elsif number_of_videos == 2 %}
|
||||
@media only screen and (min-width: 768px) {
|
||||
.courses-section[item-categories="{{ category_uuid }}"] .courses-section-button {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
{% else %}
|
||||
@media only screen and (min-width: 1200px) {
|
||||
.courses-section[item-categories="{{ category_uuid }}"] .courses-section-button {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
{% endif %}
|
||||
</style>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<div class="courses container width-limit">
|
||||
{% include "catalog_filter", uuids: categories_uuids, names: categories_names %}
|
||||
<section class="courses-section courses-section-featured" item-categories="">
|
||||
<h3 class="courses-title strong">
|
||||
<span class="lang-en">Featured courses</span>
|
||||
<span class="lang-de">Ausgewählte Kurse</span>
|
||||
<span class="lang-es">Cursos destacados</span>
|
||||
<span class="lang-fr">Cours à l'affiche</span>
|
||||
<span class="lang-br">Cursos em destaque</span>
|
||||
</h3>
|
||||
{% assign any_course = false %}
|
||||
<div class="courses-list row">
|
||||
{% for course in courses.in_catalog %}
|
||||
{% if course.ribbon != "VIDEO" and course.properties.featured %}
|
||||
{% include "cards_course" %}
|
||||
{% assign any_course = true %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</section>
|
||||
{% unless any_course %}
|
||||
<style>
|
||||
.courses-section-featured {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
{% endunless %}
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.courses-title {
|
||||
padding-bottom: 40px;
|
||||
padding-top: 40px;
|
||||
}
|
||||
.courses-section:not(:last-of-type) .courses-list {
|
||||
border-bottom: 1px solid #E1E1FF;
|
||||
}
|
||||
.courses-section-filtered .courses-list {
|
||||
border-bottom: none !important;
|
||||
}
|
||||
.courses-list {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.courses-section-filtered {
|
||||
margin-top: 40px;
|
||||
}
|
||||
.courses-section-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.courses-section-filtered .courses-section-header {
|
||||
display: none;
|
||||
}
|
||||
.courses-section-button {
|
||||
color: #0070D6;
|
||||
cursor: pointer;
|
||||
}
|
||||
.courses-section-button-hide {
|
||||
display: none;
|
||||
}
|
||||
.courses-section.courses-section-expanded .courses-section-button-hide {
|
||||
display: block;
|
||||
}
|
||||
.courses-section.courses-section-expanded .courses-section-button-expand {
|
||||
display: none;
|
||||
}
|
||||
@media only screen and (max-width: 767px) {
|
||||
.courses-section:not(.courses-section-expanded) .course-card:not(:first-child) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 768px) {
|
||||
.courses-list > div {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
.courses-list {
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 768px) and (max-width: 1199px) {
|
||||
.courses-section:not(.courses-section-expanded) .course-card:nth-child(n+3) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 1200px) {
|
||||
.courses-section:not(.courses-section-expanded) .course-card:nth-child(n+4) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
window.addEventListener('DOMContentLoaded', () => {
|
||||
document.querySelectorAll('.course-card-description').forEach((x) => {
|
||||
$clamp(x, {clamp: 5});
|
||||
})
|
||||
|
||||
{% if current_school.sso_active? %}
|
||||
var categoriesOrder = ['ALL',
|
||||
'e2af61ed-3fbc-448d-9d88-3a66b44735b3',
|
||||
'8fff4f04-75a5-43df-ae71-1fb4efb052a6',
|
||||
'5e2da7ac-8c87-49a2-b385-c5be91c0217f'
|
||||
]
|
||||
{% else %}
|
||||
var categoriesOrder = ['ALL',
|
||||
'b62b5946-6a39-4fac-90e2-87b921620aa4',
|
||||
'db1bb7fd-bb8f-4939-a731-e9f8e5005370',
|
||||
'41abb409-d6f4-4ee9-b07e-0320dc3cc719'
|
||||
]
|
||||
{% endif %}
|
||||
|
||||
let filtersWrapper = document.querySelector('.courses-filter');
|
||||
let coursesWrapper = document.querySelector('.courses');
|
||||
categoriesOrder.forEach(category => {
|
||||
let filter = document.querySelector(`.courses-filter-item[category-uuid="${category}"]`)
|
||||
if (filter)
|
||||
filtersWrapper.appendChild(filter);
|
||||
if (category !== 'ALL') {
|
||||
let courseSection = document.querySelector(`.courses-section[item-categories="${category}"]`);
|
||||
if (courseSection) {
|
||||
coursesWrapper.appendChild(courseSection);
|
||||
}
|
||||
}
|
||||
});
|
||||
document.querySelectorAll('.courses-filter-hidden .courses-filter-item').forEach(filter => {
|
||||
filtersWrapper.appendChild(filter);
|
||||
});
|
||||
document.querySelectorAll('.courses-hidden .courses-section').forEach(courseSection => {
|
||||
coursesWrapper.appendChild(courseSection);
|
||||
});
|
||||
})
|
||||
</script>
|
||||
@ -0,0 +1,121 @@
|
||||
<div class="faq width-limit">
|
||||
<h2 class="faq-title">
|
||||
FAQ
|
||||
</h2>
|
||||
<div class="faq-list">
|
||||
<div class="faq-element">
|
||||
<div class="faq-question" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question-icon">
|
||||
<i class="far fa-angle-down faq-icon-closed"></i>
|
||||
<i class="far fa-angle-up faq-icon-opened"></i>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">What is a sales training program?</span>
|
||||
<span class="lang-de">Was ist ein Vertriebstraining?</span>
|
||||
<span class="lang-es">¿Qué es un programa de capacitación en ventas?</span>
|
||||
<span class="lang-fr">Qu’est-ce qu’un programme de formation commerciale ?</span>
|
||||
<span class="lang-br">O que é um programa de formação em vendas?</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">A sales training program is a course – be it virtual, on-site or on-demand – designed to equip your salespeople with the skills to maximize revenue. Online sales training is convenient and has several advantages over in-person training. For example, it allows sales professionals to complete an e-learning program at their own pace.</span>
|
||||
<span class="lang-de">Ein Vertriebstraining ist ein Lehrgang, der als E-Learning-Kurs oder vor Ort stattfinden kann und darauf ausgelegt ist, dass Ihre Vertriebsmitarbeiter die Fähigkeiten erlangen, mit denen sie Umsatz maximieren können. Virtuelles Online-Training ist dabei nicht nur praktisch, sondern hat auch weitere Vorteile gegenüber Kursen vor Ort, so ermöglicht es den Kursteilnehmern z. B. ein E-Learning-Programm im eigenen Tempo zu durchlaufen.</span>
|
||||
<span class="lang-es">Un programa de capacitación en ventas es un curso – ya sea virtual, en el sitio u on-demand – diseñado para equipar a tus vendedores con las habilidades para maximizar los ingresos. La capacitación en ventas en línea es conveniente y tiene varias ventajas sobre la capacitación en persona. Por ejemplo, permite a los profesionales de ventas completar un programa de aprendizaje electrónico a su propio ritmo.</span>
|
||||
<span class="lang-fr">Un programme de formation commerciale est un ensemble de cours - en virtuel, en présentiel ou à la demande - permettant aux commerciaux d’optimiser leurs pratiques et de gagner en efficacité . Les formations commerciales en ligne offrent de nombreux avantages par rapport aux cours en présentiel. Par exemple, elles permettent à vos vendeurs de suivre des cours à leur rythme.</span>
|
||||
<span class="lang-br">Um programa de formação em vendas é um curso - seja ele virtual, no local ou a pedido - concebido para equipar os seus vendedores com as competências necessárias para maximizar as receitas. A formação em vendas on-line é conveniente e tem várias vantagens em relação à formação presencial. Por exemplo, permite que os profissionais de vendas completem um programa de formação em linha ao seu próprio ritmo.</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="faq-element">
|
||||
<div class="faq-question" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question-icon">
|
||||
<i class="far fa-angle-down faq-icon-closed"></i>
|
||||
<i class="far fa-angle-up faq-icon-opened"></i>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">What is a sales academy?</span>
|
||||
<span class="lang-de">Was ist eine Sales Academy?</span>
|
||||
<span class="lang-es">¿Qué es una academia de ventas?</span>
|
||||
<span class="lang-fr">Qu’est-ce qu’une académie de vente ?</span>
|
||||
<span class="lang-br">O que é uma academia de vendas?</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">A sales academy is a space featuring a range of courses and videos for training salespeople. These usually include tutorials to help foster stronger customer relationships, increase revenue and strengthen sales skills. The courses can be multi-part instructor-led training, self-study or more concise lessons that focus on particular aspects of the sales process.</span>
|
||||
<span class="lang-de">In einer Sales Academy finden Sie eine weite Bandbreite von Kursen und Videos für die Fortbildung Ihres Vertriebsteams und Ihrer Vertriebsmanager. Hierzu gehören in der Regel Tutorials, die erklären, wie man stärkere Kundenbeziehungen fördert, den Umsatz erhöht und Vertriebsfähigkeiten stärkt. Dies können mehrteilige Kurse oder komprimierte Einzeleinheiten zu einem bestimmten Thema des Vertriebsprozesses sein, die von einer Fachkraft geleitet werden oder im Selbststudium stattfinden.</span>
|
||||
<span class="lang-es">Una academia de ventas es un espacio que ofrece una variedad de cursos y videos para capacitar a los vendedores. Por lo general, incluyen tutoriales para ayudar a fomentar relaciones más sólidas con los clientes, aumentar los ingresos y fortalecer las habilidades de ventas. Los cursos pueden ser de capacitación en varias partes con instructor, de autoaprendizaje o lecciones más concisas que se enfocan en aspectos particulares del proceso de ventas.</span>
|
||||
<span class="lang-fr">Une académie de vente est un espace rassemblant des cours et des vidéos d’apprentissage destinés aux forces de vente. Cela inclut des tutoriels pour apprendre à renforcer la relation client, développer le chiffre d’affaires et parfaire vos compétences commerciales. Vous trouverez aussi bien des cours en plusieurs parties dispensés par des spécialistes, que des modules à compléter soi-même, en passant par des leçons rapides portant sur des aspects particuliers du processus de vente.</span>
|
||||
<span class="lang-br">Uma academia de vendas é um espaço com uma variedade de cursos e vídeos para a formação de vendedores. Estes incluem geralmente tutoriais para ajudar a fomentar relações mais fortes com os clientes, aumentar as receitas e reforçar as capacidades de vendas. Os cursos podem ser de formação de instrutores em várias partes, auto-aprendizagem ou aulas mais concisas que se concentram em aspectos particulares do processo de vendas.</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="faq-element">
|
||||
<div class="faq-question" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question-icon">
|
||||
<i class="far fa-angle-down faq-icon-closed"></i>
|
||||
<i class="far fa-angle-up faq-icon-opened"></i>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">What is the Pipedrive Academy?</span>
|
||||
<span class="lang-de">Was ist die Pipedrive Academy?</span>
|
||||
<span class="lang-es">¿Qué es la Academia Pipedrive?</span>
|
||||
<span class="lang-fr">À quoi sert l’Académie de Pipedrive ?</span>
|
||||
<span class="lang-br">O que é a Academia Pipedrive?</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">The Pipedrive Academy is where you’ll find courses, videos and tutorials to help sales professionals level up their sales skills. It features guides that’ll teach you how to get started with Pipedrive’s CRM, how to become an email marketing pro, how to build a successful sales pipeline and much more.</span>
|
||||
<span class="lang-de">In der Pipedrive Academy finden Sie Kurse, Videos und Tutorials, die Vertriebsmitarbeitern dabei helfen, ihre Vertriebsfähigkeiten zu verbessern. Dazu gehören Leitfäden für den Start mit Pipedrives CRM, E-Mail-Marketing, wie man eine erfolgreiche Sales-Pipeline aufbaut und vieles mehr.</span>
|
||||
<span class="lang-es">La Academia Pipedrive es donde encontrarás cursos, videos y tutoriales para ayudar a los profesionales de ventas a mejorar sus habilidades de ventas. Cuenta con guías que te enseñarán cómo comenzar con el CRM de Pipedrive, cómo convertirte en un profesional del marketing por correo electrónico, cómo crear un embudo de ventas exitoso y mucho más.</span>
|
||||
<span class="lang-fr">L'Académie Pipedrive vous donne accès à des cours, des vidéos et des tutoriels conçus pour aider les professionnels de la vente à améliorer leurs compétences commerciales. Vous y trouverez des guides pour faire vos premiers pas avec le CRM Pipedrive, maîtriser le marketing par e-mail, construire un pipeline de ventes à toute épreuve, et bien plus encore.</span>
|
||||
<span class="lang-br">A Academia Pipedrive é onde se encontram cursos, vídeos e tutoriais para ajudar os profissionais de vendas a nivelar as suas capacidades de vendas. Inclui guias que lhe ensinarão como começar com o CRM da Pipedrive, como tornar-se um profissional de marketing por e-mail, como construir um canal de vendas bem sucedido e muito mais.</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="faq-element">
|
||||
<div class="faq-question" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question-icon">
|
||||
<i class="far fa-angle-down faq-icon-closed"></i>
|
||||
<i class="far fa-angle-up faq-icon-opened"></i>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">What company has the best sales training programs?</span>
|
||||
<span class="lang-de">Welches Unternehmen hat das beste Vertriebstraining?</span>
|
||||
<span class="lang-es">¿Qué empresa tiene los mejores programas de capacitación en ventas?</span>
|
||||
<span class="lang-fr">Quelle entreprise fournit les meilleurs programmes de formation commerciale ?</span>
|
||||
<span class="lang-br">Que empresa tem os melhores programas de formação em vendas?</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">The best sales training programs are those that suit your sales team the most. There are many things that contribute to a successful sales strategy. These include building strong customer relationships, making sure to follow up on time, running smart email marketing campaigns and maintaining a healthy sales pipeline. Pipedrive’s Academy doesn’t only guide users on its software – it helps salespeople acquire sales skills that can be applied to whichever tool they use.</span>
|
||||
<span class="lang-de">Die besten Fortbildungsprogramme sind die, die ideal zu Ihrem Vertriebsteam passen. Es gibt viele Dinge, die zu einer erfolgreichen Vertriebsstrategie beitragen. Dazu gehören der Aufbau starker Kundenbeziehungen, das Nachfassen im richtigen Moment, durchdachte E-Mail-Marketing-Kampagnen sowie eine gesunde Sales-Pipeline. Die Pipedrive Academy unterstützt Nutzer nicht allein bei der Verwendung der Software, es hilft Vertrieblern auch dabei, Vertriebsfähigkeiten zu erwerben, die für jedes andere Tool Anwendung finden können.</span>
|
||||
<span class="lang-es">Los mejores programas de capacitación en ventas son los que mejor se adaptan a tu equipo de ventas. Hay muchas cosas que contribuyen a una estrategia de ventas exitosa. Estos incluyen construir relaciones sólidas con los clientes, asegurarse de dar seguimiento a tiempo, ejecutar campañas de marketing por correo electrónico inteligentes y mantener un embudo de ventas saludable. La Academia Pipedrive no solo guía a los usuarios a navegar por su software, sino que también ayuda a los vendedores a adquirir habilidades de ventas que se pueden aplicar a cualquier herramienta que utilicen.</span>
|
||||
<span class="lang-fr">Les meilleurs programmes de formation commerciale sont avant tout ceux qui correspondent aux besoins de votre équipe de vente. Les éléments concourant au succès de votre stratégie commerciale sont multiples : qualité de votre relation client, timing des relances, pertinence de vos campagnes emailing, santé du pipeline commercial. L’Académie de Pipedrive ne se contente pas de guider les utilisateurs à travers le logiciel : elle permet aux commerciaux d’acquérir de nouvelles compétences qu’ils pourront mettre à profit, quels que soient les outils qu’ils utilisent.</span>
|
||||
<span class="lang-br">Os melhores programas de formação de vendas são os que mais se adequam à sua equipa de vendas. Há muitas coisas que contribuem para uma estratégia de vendas bem sucedida. Estes incluem a construção de relações fortes com os clientes, assegurar o acompanhamento a tempo, executar campanhas inteligentes de marketing por e-mail e manter um canal de vendas saudável. A Pipedrive's Academy não orienta apenas os utilizadores no seu software - ajuda os vendedores a adquirirem competências de vendas que podem ser aplicadas a qualquer ferramenta que utilizem.</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="faq-element">
|
||||
<div class="faq-question" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question-icon">
|
||||
<i class="far fa-angle-down faq-icon-closed"></i>
|
||||
<i class="far fa-angle-up faq-icon-opened"></i>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<span class="lang-en">How do I build a sales training program?</span>
|
||||
<span class="lang-de">Wie baue ich Weiterbildungen im Vertrieb auf?</span>
|
||||
<span class="lang-es">¿Cómo construyo un programa de capacitación en ventas?</span>
|
||||
<span class="lang-fr">Comment construire un programme d’apprentissage CRM ?</span>
|
||||
<span class="lang-br">Como é que construo um programa de formação de vendas?</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
<span class="lang-en">There are endless resources available when it comes to training your sales team. Sure, you could trawl the internet looking for the right materials, or you could use one of the guides in the Pipedrive Academy. These courses are tailor-made to help you to achieve sales success, understand email marketing and build a successful sales pipeline.</span>
|
||||
<span class="lang-de">Die Zahl der Weiterbildungsangebote für Vertriebsteams ist schier endlos verfügbar. Natürlich können Sie das Internet auf der Suche nach den richtigen Ressourcen durchstöbern oder Sie nutzen einen der Leitfäden in der Pipedrive Academy. Diese Kurse sind darauf zugeschnitten, Ihnen zu größtmöglichem Vertriebserfolg zu verhelfen, E-Mail-Markting zu verstehen und eine gesunde Sales-Pipeline aufzubauen.</span>
|
||||
<span class="lang-es">Hay innumerables recursos disponibles cuando se trata de capacitar a tu equipo de ventas. Claro, podrías buscar en Internet los materiales correctos o podrías usar una de las guías de la Academia Pipedrive. Estos cursos están hechos a la medida para ayudarte a lograr el éxito en las ventas, comprender el marketing por correo electrónico y crear un embudo de ventas exitoso.</span>
|
||||
<span class="lang-fr">Ce ne sont pas les ressources qui manquent pour entraîner votre équipe de vente. Vous pouvez faire vos propres recherches sur Internet ou consulter les guides de l’Académie de Pipedrive. Spécialement conçus pour vous aider à enclencher votre réussite commerciale, nos cours vous apprendront à maîtriser le marketing par e-mail et à configurer efficacement votre pipeline de vente. </span>
|
||||
<span class="lang-br">Há inúmeros recursos disponíveis quando se trata de treinar a sua equipa de vendas. Claro, pode navegar na Internet à procura dos materiais certos, ou pode utilizar um dos guias da Academia Pipedrive. Estes cursos são feitos à medida para o ajudar a alcançar o sucesso de vendas, compreender o marketing por correio electrónico e construir um canal de vendas bem sucedido.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -0,0 +1,97 @@
|
||||
{% if uuids.size > 0 %}
|
||||
<div class="courses-filter">
|
||||
<div class="courses-filter-item courses-filter-item-active body-s strong" onclick="filterItems(this)" category-uuid="ALL">
|
||||
<span class="lang-en">All topics</span>
|
||||
<span class="lang-de">Alle Themen</span>
|
||||
<span class="lang-es">Todos los temas</span>
|
||||
<span class="lang-fr">Tous les thèmes</span>
|
||||
<span class="lang-br">Todos os tópicos</span>
|
||||
</div>
|
||||
{% for x in (1..uuids.size) %}
|
||||
{% assign y = x | minus: 1 %}
|
||||
<div class="courses-filter-item body-s strong" onclick="filterItems(this)" category-uuid="{{ uuids | slice: y }}">
|
||||
{% assign category_name = names | slice: y %}
|
||||
{% if category_name contains 'Pipedrive courses' %}
|
||||
<span class="lang-en">Pipedrive courses</span>
|
||||
<span class="lang-de">Pipedrive Kurse</span>
|
||||
<span class="lang-es">Cursos de Pipedrive</span>
|
||||
<span class="lang-fr">Cours de Pipedrive</span>
|
||||
<span class="lang-br">Cursos de Pipedrive</span>
|
||||
{% elsif category_name contains 'Sales courses' %}
|
||||
<span class="lang-en">Sales courses</span>
|
||||
<span class="lang-de">Vertriebskurse</span>
|
||||
<span class="lang-es">Cursos de Ventas</span>
|
||||
<span class="lang-fr">Cours de Vente</span>
|
||||
<span class="lang-br">Cursos de Vendas</span>
|
||||
{% elsif category_name contains 'Marketing courses' %}
|
||||
<span class="lang-en">Marketing courses</span>
|
||||
<span class="lang-de">Marketingkurse</span>
|
||||
<span class="lang-es">Cursos de Marketing</span>
|
||||
<span class="lang-fr">Cours de Marketing</span>
|
||||
<span class="lang-br">Cursos de Marketing</span>
|
||||
{% elsif category_name contains 'Spanish' %}
|
||||
<span class="lang-en">Spanish</span>
|
||||
<span class="lang-de">Spanisch</span>
|
||||
<span class="lang-es">Español</span>
|
||||
<span class="lang-fr">Espagnol</span>
|
||||
<span class="lang-br">Espanhol</span>
|
||||
{% else %}
|
||||
{{ category_name }}
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<style>
|
||||
.courses-filter {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
margin-top: 40px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.courses-filter-item {
|
||||
padding: 10px 20px;
|
||||
border: 2px solid #E4E6E9;
|
||||
border-radius: 300px;
|
||||
color: #656E7A;
|
||||
white-space: nowrap;
|
||||
cursor: pointer;
|
||||
}
|
||||
.courses-filter-item:not(.courses-filter-item-active):hover {
|
||||
color: var(--black-digital);
|
||||
}
|
||||
.courses-filter-item-active {
|
||||
color: var(--green);
|
||||
border: 2px solid var(--green);
|
||||
cursor: default;
|
||||
}
|
||||
.category-hidden {
|
||||
display: none !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
function filterItems(element) {
|
||||
if (!element.classList.contains(('courses-filter-item-active'))) {
|
||||
document.querySelector('.courses-filter-item-active').classList.remove('courses-filter-item-active');
|
||||
element.classList.add('courses-filter-item-active');
|
||||
let selectedCategoryUUID = element.getAttribute('category-uuid');
|
||||
document.querySelectorAll('.courses-section-expanded').forEach(x => {x.classList.remove('courses-section-expanded')});
|
||||
document.querySelectorAll('.courses-section-filtered').forEach(x => {x.classList.remove('courses-section-filtered')});
|
||||
document.querySelectorAll('[item-categories]').forEach(x => {x.classList.remove('category-hidden')});
|
||||
if (selectedCategoryUUID !== 'ALL') {
|
||||
document.querySelectorAll(".courses-section").forEach(x => {
|
||||
if (x.getAttribute('item-categories') === selectedCategoryUUID) {
|
||||
x.classList.add('courses-section-expanded');
|
||||
x.classList.add('courses-section-filtered');
|
||||
} else {
|
||||
x.classList.add('category-hidden');
|
||||
}
|
||||
});
|
||||
}
|
||||
window.sessionStorage.setItem('last-selected-video-filter', selectedCategoryUUID);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
@ -0,0 +1,87 @@
|
||||
<section class="page-info-wrapper">
|
||||
<div class="page-info width-limit">
|
||||
<div class="page-info-section">
|
||||
<div class="page-info-section-image-wrapper">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/page_info_catalog_1.png">
|
||||
</div>
|
||||
<div class="page-info-section-text">
|
||||
<h3 class="page-info-section-title">
|
||||
<span class="lang-en">What you can find in the Pipedrive Academy:</span>
|
||||
<span class="lang-de">Was Sie in der Pipedrive Academy erwartet:</span>
|
||||
<span class="lang-es">Qué puedes encontrar en la Academia de Pipedrive:</span>
|
||||
<span class="lang-fr">Que trouverez-vous dans l’Académie de Pipedrive ?</span>
|
||||
<span class="lang-br">O que você encontra na Academia do Pipedrive:</span>
|
||||
</h3>
|
||||
<div class="page-info-section-description">
|
||||
<span class="lang-en">Pipedrive’s Academy is where you’ll find self-paced courses – including online training videos – to help sales professionals and marketers on your team learn and improve their marketing and sales skills. Courses in the academy range from quick, practical lessons that address specific issues your salespeople might encounter along the sales process to longer, multi-part e-learning tutorials that break down much larger topics – such as an introduction to email marketing – into smaller, bite-sized chunks – like <a href="https://www.pipedrive.com/en/academy/courses/organize-your-sales-data">how to organize sales data</a>.</span>
|
||||
<span class="lang-de">In Pipedrives Academy finden Sie unsere Kurse, die sich ganz auf das individuelle Lerntempo anpassen lassen, damit Mitarbeiter in Vertrieb und Marketing Fähigkeiten in den Bereichen Vertrieb und Marketing erlangen und verbessern. Die Kurse in der Academy reichen dabei von kurzen, praktischen Einheiten, die spezifische Themen angehen bis hin zu mehrteiligen E-Learning-Tutorials, die umfassendere Themen, wie z. B. eine Einführung in das E-Mail-Marketing, in kleinere Teile herunterbrechen, wie etwa für die <a href="https://www.pipedrive.com/en/academy/courses/organize-your-sales-data">Organisation von Vertriebsdaten</a>.</span>
|
||||
<span class="lang-es">En la Academia Pipedrive encontrarás cursos a tu propio ritmo – incluidos videos de capacitación en línea – para ayudar a los profesionales de ventas y especialistas en marketing de tu equipo a aprender y mejorar sus habilidades de marketing y ventas. Los cursos de la academia van desde lecciones rápidas y prácticas que abordan problemas específicos que tus vendedores pueden encontrar a lo largo del proceso de ventas, hasta tutoriales de aprendizaje electrónico más largos y de varias partes que dividen temas mucho más amplios, como una introducción al marketing por correo electrónico, en temas más pequeños, fragmentos reducidos, como, por ejemplo, <a href="https://www.pipedrive.com/en/academy/courses/organize-your-sales-data">cómo organizar los datos de ventas</a>.</span>
|
||||
<span class="lang-fr">L’Académie de Pipedrive est un espace où les membres de votre équipe pourront suivre à leur rythme des modules d’apprentissage - y compris des vidéos de formation en ligne - pour acquérir de nouvelles compétences en vente et en marketing. Les cours de l'Académie comportent aussi bien des leçons rapides et pratiques abordant les problèmes spécifiques que vos commerciaux peuvent rencontrer au cours du processus de vente, que des tutoriels d'apprentissage en ligne approfondis et en plusieurs parties, décomposant des sujets beaucoup plus vastes - « Introduction au marketing par e-mail » par exemple - en petites unités - par exemple : <a href="https://www.pipedrive.com/en/academy/courses/organize-your-sales-data">« Comment organiser vos données commerciales »</a></span>
|
||||
<span class="lang-br">A Academia do Pipedrive é onde você vai encontrar cursos – incluindo vídeos de treinamento – para ajudar profissionais de vendas e de marketing em sua equipe a melhorar suas habilidades. Os cursos da academia variam entre lições rápidas e práticas que tratam de questões específicas que podem ser encontradas em processos de vendas e tutoriais longos, divididos em partes sobre tópicos mais abrangentes – como a introdução ao e-mail marketing – e em tópicos mais específicos – por exemplo, <a href="https://www.pipedrive.com/en/academy/courses/organize-your-sales-data">como organizar seus dados de vendas</a> como organizar seus dados de vendas.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-info-section">
|
||||
<div class="page-info-section-image-wrapper">
|
||||
<img class="page-info-section-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/page_info_catalog_2.png">
|
||||
</div>
|
||||
<div class="page-info-section-text">
|
||||
<h3 class="page-info-section-title">
|
||||
<span class="lang-en">The benefits of sales training programs:</span>
|
||||
<span class="lang-de">Die Vorteile von Weiterbildungen im Vertrieb:</span>
|
||||
<span class="lang-es">Las ventajas de los programas de capacitación en ventas:</span>
|
||||
<span class="lang-fr">Les avantages d’un programme de formation commerciale</span>
|
||||
<span class="lang-br">Os benefícios de programas de treinamento em vendas:</span>
|
||||
</h3>
|
||||
<div class="page-info-section-description">
|
||||
<span class="lang-en">
|
||||
Without proper training, a sales team can struggle to close deals and miss potential revenue. The wrong sales strategy makes it difficult to yield results and sales professionals might pursue bad leads or waste time on unproductive tasks.<br>
|
||||
Sales training programs help sales teams hone in on their targets in various ways. Among other things, they:<br>
|
||||
<ul>
|
||||
<li>Empower sales reps to acquire top sales techniques they can use to engage with new target groups and close deals.</li>
|
||||
<li>Allow businesses to improve and personalize their communication with prospects. Conducting warmer, less transactional sales conversations and customer relationships is likely to result in repeat business and improved customer retention rates.</li>
|
||||
<li>Motivate your company’s sales force through consistent nurturing, leading to greater employee retention, morale and productivity.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-de">
|
||||
Ohne vernünftiges Vertriebstraining wird ein Vertriebsteam Schwierigkeiten haben, Deals abzuschließen und potenzielle Umsätze werden verloren gehen. Die falsche Vertriebsstrategie erschwert das Erreichen von Ergebnissen und Ihre Mitarbeiter verfolgen möglicherweise schlechte Leads oder verschwenden Zeit mit unproduktiven Aufgaben.<br>
|
||||
Mit Sales-Training-Programmen versteht Ihr Vertriebsteam, wie es sich auf verschiedene Weisen seinen Zielen nähern kann. In den Vertriebsweiterbildungen lernen sie u. a.:<br>
|
||||
<ul>
|
||||
<li>Vertriebstechniken, mit denen das Team neue Zielgruppen erreicht und Deals abschließt</li>
|
||||
<li>Wie Unternehmen die Kommunikation mit Interessenten verbessern und personalisieren können. Persönlichere, weniger transaktionale Vertriebsgespräche und solide Kundenbeziehungen erhöhen die Wahrscheinlichkeit erneuter Einkäufe und verbessern die Kundenbindung.</li>
|
||||
<li>Motivation des Vertriebsteams, was zu stärkere Mitarbeiterbindung, besserer Moral und gesteigerter Produktivität führt.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-es">
|
||||
Sin la capacitación adecuada, un equipo de ventas puede tener dificultades para cerrar tratos y perder ingresos potenciales. La estrategia de ventas incorrecta dificulta la obtención de resultados y los profesionales de ventas pueden buscar malos prospectos o perder el tiempo en tareas improductivas.<br>
|
||||
Los programas de capacitación en ventas ayudan a los equipos de ventas a perfeccionar sus objetivos de varias maneras. Entre otras cosas, los programas:<br>
|
||||
<ul>
|
||||
<li>Empoderan a los representantes de ventas para que adquieran las mejores técnicas de ventas que pueden usar para interactuar con nuevos grupos objetivo y cerrar tratos.</li>
|
||||
<li>Permiten que las empresas mejoren y personalicen su comunicación con los clientes potenciales. Es probable que llevar a cabo conversaciones de ventas y relaciones con los clientes más cálidas y menos transaccionales resulte en negocios repetidos y mejores índices de retención de clientes.</li>
|
||||
<li>Motivan al equipo de ventas de tu empresa a través de una nutrición constante, lo que lleva a una mayor retención, moral y productividad de los empleados.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-fr">
|
||||
Sans formation adéquate, votre équipe commerciale aura des difficultés à conclure des ventes et à générer du chiffre d’affaires. Une stratégie de vente adaptée est indispensable pour obtenir des résultats et éviter que votre force de vente ne démarche les mauvais prospects ou perde son temps en activités improductives.<br>
|
||||
Nos programmes de formation à la vente sont conçus pour aider les équipes commerciales à affiner leurs objectifs de multiples façons. Ils vous permettront notamment de :<br>
|
||||
<ul>
|
||||
<li>Fournir à vos commerciaux les meilleures techniques de vente pour démarcher de nouveaux groupes cibles et conclure davantage d’affaires</li>
|
||||
<li>Permettre aux entreprises d’améliorer et de personnaliser la manière dont elles communiquent avec les prospects : en apportant un supplément d’âme et de chaleur à vos échanges commerciaux, vous avez plus de chances de générer des ventes répétées et de booster vos taux de rétention client.</li>
|
||||
<li>Motiver votre force de vente en l’aidant continuellement à développer ses capacités, pour favoriser le moral, la productivité et la rétention des employés.</li>
|
||||
</ul>
|
||||
</span>
|
||||
<span class="lang-br">
|
||||
Sem treinamento adequado, uma equipe de vendas pode ter dificuldades para fechar negócios e acabar perdendo receita. A estratégia de vendas errada dificulta a geração de resultados e profissionais de vendas acabam focando em leads ruins ou perdendo tempo em tarefas que não são produtivas.<br>
|
||||
Os programas de treinamento de vendas ajudam as equipes a atingir suas metas de várias maneiras. Entre outras coisas, esses programas ajudam a:<br>
|
||||
<ul>
|
||||
<li>Capacitar representantes de vendas para melhorar técnicas de vendas que podem ser usadas para criar engajamento com novos grupos e fechar negócios.</li>
|
||||
<li>Permitir que as empresas melhorem e personalizem sua comunicação com clientes em potencial. Ao conduzir conversas e relacionamentos com clientes mais interessados provavelmente resultará em negócios contínuos e melhores taxas de retenção de clientes.</li>
|
||||
<li>Motivar as equipes de vendas da sua empresa por meio de nutrição consistente, levando a uma maior retenção, moral e produtividade dos funcionários.</li>
|
||||
</ul>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@ -0,0 +1,383 @@
|
||||
<script
|
||||
src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js"
|
||||
data-document-language="true"
|
||||
type="text/javascript"
|
||||
charset="UTF-8"
|
||||
data-domain-script="c938af5b-8612-421f-8d15-740c329a09bc{% if current_school.properties.sandbox %}-test{% endif %}"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
!(function () {
|
||||
var analytics = (window.analytics = window.analytics || []);
|
||||
if (!analytics.initialize)
|
||||
if (analytics.invoked)
|
||||
window.console &&
|
||||
console.error &&
|
||||
console.error("Segment snippet included twice.");
|
||||
else {
|
||||
analytics.invoked = !0;
|
||||
analytics.methods = [
|
||||
"trackSubmit",
|
||||
"trackClick",
|
||||
"trackLink",
|
||||
"trackForm",
|
||||
"pageview",
|
||||
"identify",
|
||||
"reset",
|
||||
"group",
|
||||
"track",
|
||||
"ready",
|
||||
"alias",
|
||||
"debug",
|
||||
"page",
|
||||
"once",
|
||||
"off",
|
||||
"on",
|
||||
"addSourceMiddleware",
|
||||
"addIntegrationMiddleware",
|
||||
"setAnonymousId",
|
||||
"addDestinationMiddleware",
|
||||
];
|
||||
analytics.factory = function (e) {
|
||||
return function () {
|
||||
var t = Array.prototype.slice.call(arguments);
|
||||
t.unshift(e);
|
||||
analytics.push(t);
|
||||
return analytics;
|
||||
};
|
||||
};
|
||||
for (var e = 0; e < analytics.methods.length; e++) {
|
||||
var key = analytics.methods[e];
|
||||
analytics[key] = analytics.factory(key);
|
||||
}
|
||||
analytics.load = function (key, e) {
|
||||
var t = document.createElement("script");
|
||||
t.type = "text/javascript";
|
||||
t.async = !0;
|
||||
t.src =
|
||||
"https://cdn.segment.com/analytics.js/v1/" +
|
||||
key +
|
||||
"/analytics.min.js";
|
||||
var n = document.getElementsByTagName("script")[0];
|
||||
n.parentNode.insertBefore(t, n);
|
||||
analytics._loadOptions = e;
|
||||
};
|
||||
analytics._writeKey = "Toe2jCBJvPgwWBT0GvOylUgge4ZHeEyc"; //this will change between PROD and PPR versions. Not final key.
|
||||
analytics.SNIPPET_VERSION = "4.15.3";
|
||||
}
|
||||
})();
|
||||
|
||||
var gtm_middleware = function({payload, next, integration}) {
|
||||
if (payload.obj.messageId) {
|
||||
payload.obj.properties.messageId = payload.obj.messageId;
|
||||
}
|
||||
next(payload);
|
||||
};
|
||||
|
||||
window.analytics.addDestinationMiddleware('Google Tag Manager',[gtm_middleware]);
|
||||
</script>
|
||||
|
||||
<script>
|
||||
// Read Google Analytics cookie values and format them
|
||||
function getCookie(name) {
|
||||
const match = document.cookie.match(new RegExp(`(^| )${name}=([^;]+)`));
|
||||
return Array.isArray(match) && match.length > 1 ? match[2] : "";
|
||||
}
|
||||
("use strict");
|
||||
function _slicedToArray(t, e) {
|
||||
return (
|
||||
_arrayWithHoles(t) || _iterableToArrayLimit(t, e) || _nonIterableRest()
|
||||
);
|
||||
}
|
||||
function _nonIterableRest() {
|
||||
throw new TypeError("Invalid attempt to destructure non-iterable instance");
|
||||
}
|
||||
function _iterableToArrayLimit(t, e) {
|
||||
var r = [],
|
||||
n = !0,
|
||||
i = !1,
|
||||
o = void 0;
|
||||
try {
|
||||
for (
|
||||
var a, l = t[Symbol.iterator]();
|
||||
!(n = (a = l.next()).done) && (r.push(a.value), !e || r.length !== e);
|
||||
n = !0
|
||||
);
|
||||
} catch (t) {
|
||||
(i = !0), (o = t);
|
||||
} finally {
|
||||
try {
|
||||
n || null == l.return || l.return();
|
||||
} finally {
|
||||
if (i) throw o;
|
||||
}
|
||||
}
|
||||
return r;
|
||||
}
|
||||
function _arrayWithHoles(t) {
|
||||
if (Array.isArray(t)) return t;
|
||||
}
|
||||
function getGoogleAnalyticsClients() {
|
||||
try {
|
||||
return ga && "function" == typeof ga.getAll ? ga.getAll() : [];
|
||||
} catch (t) {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
function formatGACookieValue(t) {
|
||||
if (!t) return "";
|
||||
var e = _slicedToArray("".concat(t).split("."), 4),
|
||||
r = e[2],
|
||||
n = e[3];
|
||||
return r && n ? "".concat(r, ".").concat(n) : "";
|
||||
}
|
||||
function getAnalyticsValues() {
|
||||
var t = getGoogleAnalyticsClients(),
|
||||
e = "",
|
||||
r = "";
|
||||
return (
|
||||
(r = t.length
|
||||
? ((e = t[0].get("clientId")), t[0].get("_gid"))
|
||||
: ((e = formatGACookieValue(getCookie("_ga"))),
|
||||
formatGACookieValue(getCookie("_gid")))),
|
||||
{ ga_client_id: e, gid: r }
|
||||
);
|
||||
}
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
function OptanonWrapper() {
|
||||
(function loadSegmentTemplate() {
|
||||
if (typeof window.analytics.load !== "function") {
|
||||
return;
|
||||
}
|
||||
var groups = window.OnetrustActiveGroups || "C0001";
|
||||
if (!groups.includes("C0002")) {
|
||||
return;
|
||||
}
|
||||
//write key within load call also would need updated.
|
||||
window.analytics.load("Toe2jCBJvPgwWBT0GvOylUgge4ZHeEyc", {
|
||||
integrations: {
|
||||
// Performance
|
||||
"Google Tag Manager": groups.includes("C0002")
|
||||
},
|
||||
});
|
||||
{% if current_person.signed_in? %}
|
||||
{% if current_school.sso_active? %}
|
||||
var email = '{{ current_person.email }}' || null
|
||||
var user_id = '{{ current_person.id }}' || null
|
||||
var sso_uid = '{{ current_person.sso_uid }}' || null
|
||||
{% else %}
|
||||
var email = '{{ current_person.email }}' || null
|
||||
var user_id = '{{ current_person.id }}' || null
|
||||
var sso_uid = null
|
||||
{% endif %}
|
||||
{% else %}
|
||||
var email = null
|
||||
var user_id = null
|
||||
var sso_uid = null
|
||||
{% endif %}
|
||||
|
||||
analytics.identify({
|
||||
"traits":{
|
||||
"northpass_email": email ,
|
||||
"northpass_identifier": user_id,
|
||||
"pd_sso" : sso_uid
|
||||
},
|
||||
});
|
||||
analytics.page(document.title, getAnalyticsValues());
|
||||
})();
|
||||
}
|
||||
</script>
|
||||
|
||||
{% comment %}
|
||||
<style>
|
||||
#onetrust-consent-sdk *:focus {
|
||||
outline: none !important;
|
||||
}
|
||||
#onetrust-banner-sdk .banner_logo {
|
||||
background-image: url("https://s3.amazonaws.com/static.northpass.com/pipedrive/cookie.svg");
|
||||
height: 158px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
display: block !important;
|
||||
}
|
||||
#onetrust-policy-text {
|
||||
margin-top: 40px !important;
|
||||
color: var(--black-digital) !important;
|
||||
font-size: 18px !important;
|
||||
line-height: 30px !important;
|
||||
}
|
||||
#onetrust-button-group-parent {
|
||||
margin-top: 15px !important;
|
||||
}
|
||||
/* button-2 */
|
||||
#onetrust-pc-btn-handler, .save-preference-btn-handler {
|
||||
background: #E1E1FF !important;
|
||||
color: #413D99 !important;
|
||||
border: none !important;
|
||||
padding: 10px 20px !important;
|
||||
font-size: 18px !important;
|
||||
line-height: 21px !important;
|
||||
font-weight: 700 !important;
|
||||
border-radius: 4px !important;
|
||||
text-align: center !important;
|
||||
cursor: pointer !important;
|
||||
text-decoration: none !important;
|
||||
width: fit-content !important;
|
||||
}
|
||||
#onetrust-pc-btn-handler:hover, .save-preference-btn-handler:hover {
|
||||
background: #C4C2FF !important;
|
||||
color: #413D99 !important;
|
||||
opacity: 1 !important;
|
||||
}
|
||||
/* button-1 */
|
||||
#onetrust-accept-btn-handler, #accept-recommended-btn-handler {
|
||||
background: var(--purple) !important;
|
||||
color: #FFF !important;
|
||||
border: none !important;
|
||||
padding: 10px 20px !important;
|
||||
font-size: 18px !important;
|
||||
line-height: 21px !important;
|
||||
font-weight: 700 !important;
|
||||
border-radius: 4px !important;
|
||||
text-align: center !important;
|
||||
width: fit-content !important;
|
||||
cursor: pointer !important;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
#onetrust-accept-btn-handler:hover, #accept-recommended-btn-handler:hover{
|
||||
background: #413D99 !important;
|
||||
color: white !important;
|
||||
opacity: 1 !important;
|
||||
}
|
||||
.banner-actions-container {
|
||||
width: fit-content !important;
|
||||
}
|
||||
#onetrust-button-group {
|
||||
display: flex !important;
|
||||
justify-content: space-evenly;
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
#ot-pc-title {
|
||||
font-weight: 700 !important;
|
||||
font-size: 18px !important;
|
||||
line-height: 30px !important;
|
||||
color: var(--black-digital) !important;
|
||||
margin-top: 40px !important;
|
||||
margin-bottom: 18px !important;
|
||||
}
|
||||
#ot-pc-desc {
|
||||
font-size: 14px !important;
|
||||
line-height: 25px !important;
|
||||
color: var(--black-digital) !important;
|
||||
}
|
||||
.privacy-notice-link {
|
||||
color: #0070D6 !important;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
#ot-category-title {
|
||||
font-weight: 700 !important;
|
||||
font-size: 18px !important;
|
||||
line-height: 30px !important;
|
||||
color: var(--black-digital) !important;
|
||||
}
|
||||
.ot-cat-header {
|
||||
line-height: 25px !important;
|
||||
color: var(--black-digital) !important;
|
||||
margin-top: -8px !important;
|
||||
margin-left: 10px !important;
|
||||
font-size: 16px !important;
|
||||
font-weight: 700 !important;
|
||||
}
|
||||
.ot-switch-nob {
|
||||
background: #DADDE1 !important;
|
||||
height: 23px !important;
|
||||
border: none !important;
|
||||
}
|
||||
#onetrust-pc-sdk .ot-switch-nob::before {
|
||||
bottom: 3px !important;
|
||||
background-color: #FFF !important;
|
||||
height: 17px !important;
|
||||
width: 17px !important;
|
||||
left: 3px !important;
|
||||
}
|
||||
.category-switch-handler:checked ~ .ot-switch .ot-switch-nob {
|
||||
background: var(--green) !important;
|
||||
}
|
||||
.ot-always-active {
|
||||
color: var(--black-digital) !important;
|
||||
font-weight: 400 !important;
|
||||
font-size: 14px !important;
|
||||
}
|
||||
.ot-pc-header {
|
||||
height: 0 !important;
|
||||
position: relative !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
#ot-pc-content {
|
||||
top: 0 !important;
|
||||
}
|
||||
#onetrust-consent-sdk #onetrust-pc-sdk .ot-tgl input:focus + .ot-switch {
|
||||
outline: none !important;
|
||||
}
|
||||
.ot-pc-logo {
|
||||
display: none !important;
|
||||
}
|
||||
.ot-acc-grpcntr.ot-acc-txt {
|
||||
background: none !important;
|
||||
font-size: 16px !important;
|
||||
}
|
||||
.ot-acc-grpdesc.ot-category-desc {
|
||||
color: var(--black-digital) !important;
|
||||
font-size: 16px !important;
|
||||
}
|
||||
.ot-plus-minus {
|
||||
background: #f4f5f6 !important;
|
||||
border-radius: 50% !important;
|
||||
height: 24px !important;
|
||||
width: 24px !important;
|
||||
}
|
||||
.ot-plus-minus > span {
|
||||
display: none !important;
|
||||
}
|
||||
.ot-plus-minus::after {
|
||||
display: block;
|
||||
position: relative;
|
||||
content: '';
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
top: 1px;
|
||||
background: url(https://s3.amazonaws.com/static.northpass.com/pipedrive/cookie-caret.svg) no-repeat center;
|
||||
transition: rotate 0.7s;
|
||||
}
|
||||
button[aria-expanded="true"] ~ .ot-acc-hdr .ot-plus-minus::after {
|
||||
rotate: -180deg;
|
||||
}
|
||||
</style>
|
||||
{% endcomment %}
|
||||
|
||||
{% if current_person.signed_in? and current_school.properties.sandbox == false %}
|
||||
<script>
|
||||
let permissionCookie = ''
|
||||
function validateCookieProperty() {
|
||||
getCookie('OptanonConsent').split('&').forEach(x => {
|
||||
if (x.startsWith('groups='))
|
||||
permissionCookie = decodeURIComponent(x.split('=')[1])
|
||||
})
|
||||
if (permissionCookie !== '{{ current_person.properties.cookie_permissions }}') {
|
||||
const xhr = new XMLHttpRequest();
|
||||
{% if current_school.sso_active? %}
|
||||
var url = 'https://www.workato.com/webhooks/rest/997192d2-6726-4f22-afbc-8cf021019896/pipedrive-sso-change-cookie-value'
|
||||
{% else %}
|
||||
var url = 'https://www.workato.com/webhooks/rest/4a75076f-e7be-472b-b661-319f34ee9d24/pipedrive-open-change-cookie-value'
|
||||
{% endif %}
|
||||
xhr.open('POST', url);
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.send(JSON.stringify({
|
||||
"personUUID": '{{ current_person.id }}',
|
||||
"newCookie": permissionCookie
|
||||
}));
|
||||
}
|
||||
}
|
||||
validateCookieProperty();
|
||||
</script>
|
||||
{% endif %}
|
||||
@ -0,0 +1,45 @@
|
||||
{% if current_person.signed_in? and course.enrolled? %}
|
||||
<script>
|
||||
window.location.replace('{% route course_viewer, course_id: course.id, learning_path_id: params.learning_path_id %}')
|
||||
</script>
|
||||
{% else %}
|
||||
<main>
|
||||
{% include "course_green_card" %}
|
||||
{% if course.instructors and course.instructors.size > 0 %}
|
||||
{% include "course_instructor_card" %}
|
||||
{% endif %}
|
||||
{% include "course_outline" %}
|
||||
{% include "catalog_faq" %}
|
||||
{% include "course_recommended_courses" %}
|
||||
|
||||
{% unless current_person.signed_in? %}
|
||||
{% assign banner_title = "<span class='lang-en'>How to get most out of Pipedrive?</span>
|
||||
<span class='lang-de'>Wie mache ich das meiste aus Pipedrive?</span>
|
||||
<span class='lang-es'>¿Cómo sacar el máximo provecho de Pipedrive?</span>
|
||||
<span class='lang-fr'>Comment tirer le maximum de Pipedrive ?</span>
|
||||
<span class='lang-br'>Como aproveitar o Pipedrive ao máximo?</span>"
|
||||
%}
|
||||
{% assign banner_text = "<span class='lang-en'>Welcome to Pipedrive Academy! Pipedrive Academy features CRM training videos and tutorials to help you level up your CRM and sales skills, from quick CRM courses to in-depth tutorials on specific features.</span>
|
||||
<span class='lang-de'>Willkommen bei der Pipedrive Academy! In der Pipedrive Academy finden Sie CRM-Schulungsvideos und -Lernprogramme, die Ihnen helfen, Ihre CRM- und Vertriebskenntnisse zu verbessern, von schnellen CRM-Kursen bis hin zu ausführlichen Lernprogrammen zu bestimmten Funktionen.</span>
|
||||
<span class='lang-es'>¡Bienvenido a la Academia Pipedrive! La Academia Pipedrive cuenta con videos y tutoriales de capacitación en CRM para ayudarte a subir de nivel en tus habilidades de CRM y ventas, desde cursos rápidos hasta tutoriales avanzados sobre funciones específicas.</span>
|
||||
<span class='lang-fr'>Bienvenue dans l'Académie de Pipedrive ! L'Académie de Pipedrive propose des vidéos de formation au CRM et des tutoriels pour améliorer vos compétences en vente et en relation client. Vous y trouverez aussi bien des leçons sur la GRC que des tutos approfondis sur des outils spécifiques. </span>
|
||||
<span class='lang-br'>Bem-vindo(a) à Academia do Pipedrive! A Academia do Pipedrive conta com vídeos de treinamento de CRM e tutoriais para ajudar você a melhorar suas habilidades de CRM e vendas. De cursos rápidos de CRM até tutoriais detalhados sobre recursos específicos, temos tudo aqui.</span>"
|
||||
%}
|
||||
{% assign banner_button_text = '<span class="lang-en">Start today</span>
|
||||
<span class="lang-de">Heute starten</span>
|
||||
<span class="lang-es">Empezar hoy mismo</span>
|
||||
<span class="lang-fr">Commencez dès aujourd'hui</span>
|
||||
<span class="lang-br">Comece hoje mesmo</span>'
|
||||
%}
|
||||
{% assign banner_button_link = "#sso-widget" %}
|
||||
{% include "green_banner_text_bg_image" %}
|
||||
{% endunless %}
|
||||
</main>
|
||||
|
||||
<script>
|
||||
addEventListener("DOMContentLoaded", () => {
|
||||
document.querySelector('#side-menu-courses')?.classList.add('side-menu-link-active');
|
||||
document.querySelector('.header-navigation-item[href="/app/catalog"]')?.classList.add('header-navigation-item-active');
|
||||
})
|
||||
</script>
|
||||
{% endif %}
|
||||
@ -0,0 +1,196 @@
|
||||
<div class="course-banner-wrapper course-banner-wrapper-image course-green-card">
|
||||
<div class="course-banner width-limit">
|
||||
{% if course.promo_video_embed_url.size > 0 %}
|
||||
<div class="course-video">
|
||||
{{ course.promo_video_embed_url }}
|
||||
</div>
|
||||
{% else %}
|
||||
<img class="course-banner-image" alt="banner image" src="{{ course.image_url }}">
|
||||
{% endif %}
|
||||
<div class="course-banner-content">
|
||||
<div class="course-return">
|
||||
<a href="/app/courses">
|
||||
<span class="lang-en">« Back to all courses</span>
|
||||
<span class="lang-de">« Zurück zu allen Kursen</span>
|
||||
<span class="lang-es">« Volver a todos los cursos</span>
|
||||
<span class="lang-fr">« Retour à l'ensemble des cours</span>
|
||||
<span class="lang-br">« Voltar a todos os cursos</span>
|
||||
</a>
|
||||
</div>
|
||||
<h1 class="course-banner-title">
|
||||
{{ course.name }}
|
||||
</h1>
|
||||
<div class="course-banner-text">
|
||||
{{ course.full_description }}
|
||||
</div>
|
||||
{% comment %}
|
||||
Hiding it for now, when reimplementing we need to link it to open academy courses via custom property with enrollemnt link
|
||||
<div class="course-share">
|
||||
<a class="course-share-item" onclick="window.open(`https://www.facebook.com/sharer/sharer.php?u=${window.location.host}{% route course_enrollment, code: course.enrollment_code %}`,'_blank').focus()" style="color: #1877F2;">
|
||||
<i class="fab fa-facebook"></i>
|
||||
</a>
|
||||
<a class="course-share-item" onclick="window.open(`https://www.linkedin.com/shareArticle?mini=true&url=${window.location.host}{% route course_enrollment, code: course.enrollment_code %}`,'_blank').focus()" style="color: #0A66C2;">
|
||||
<i class="fab fa-linkedin"></i>
|
||||
</a>
|
||||
<a class="course-share-item" onclick="window.open(`https://twitter.com/intent/tweet?url=${window.location.host}{% route course_enrollment, code: course.enrollment_code %}`,'_blank').focus()" style="color: #1DA1F2;">
|
||||
<i class="fab fa-twitter"></i>
|
||||
</a>
|
||||
<a class="course-share-item" onclick="copyToClipboard()" style="color: #26292C;">
|
||||
<i class="far fa-link"></i>
|
||||
</a>
|
||||
<div class="course-copied">
|
||||
<span class="lang-en">Link was copied!</span>
|
||||
<span class="lang-de">Link wurde kopiert!</span>
|
||||
<span class="lang-es">Enlace copiado.</span>
|
||||
<span class="lang-fr">Le lien a été copié !</span>
|
||||
<span class="lang-br">O link foi copiado!</span>
|
||||
</div>
|
||||
</div>
|
||||
{% endcomment %}
|
||||
<div class="button-wrapper">
|
||||
{% if current_person.signed_in? %}
|
||||
{% if course.enrolled? %}
|
||||
<a class="course-banner-button button-large button-1" href="{% route course_viewer, course_id: course.id, learning_path_id: params.learning_path_id %}">
|
||||
<span class="lang-en">Continue</span>
|
||||
<span class="lang-de">Weiter</span>
|
||||
<span class="lang-es">Continúe en</span>
|
||||
<span class="lang-fr">Continuer</span>
|
||||
<span class="lang-br">Continuar</span>
|
||||
</a>
|
||||
{% else %}
|
||||
<a class="course-banner-button button-large button-1" href="{% route course_enrollment, code: course.enrollment_code %}">
|
||||
<span class="lang-en">Start your course</span>
|
||||
<span class="lang-de">Starten Sie Ihren Kurs</span>
|
||||
<span class="lang-es">Comienza tu curso</span>
|
||||
<span class="lang-fr">Commencez votre cours</span>
|
||||
<span class="lang-br">Comece seu curso</span>
|
||||
</a>
|
||||
{% endif %}
|
||||
{% else %}
|
||||
<a class="course-banner-button button-large button-1"
|
||||
{% if current_school.sso_active? %}
|
||||
href="#sso-widget"
|
||||
{% else %}
|
||||
href="{% route course_enrollment, code: course.enrollment_code %}"
|
||||
{% endif %}
|
||||
>
|
||||
<span class="lang-en">Register for free courses</span>
|
||||
<span class="lang-de">Anmeldung für kostenlose Kurse</span>
|
||||
<span class="lang-es">Inscribirse en cursos gratuitos</span>
|
||||
<span class="lang-fr">S'inscrire à des cours gratuits</span>
|
||||
<span class="lang-br">Cadastre-se para cursos gratuitos</span>
|
||||
</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.course-return {
|
||||
color: #005AB0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.course-return:hover {
|
||||
color: #0070D6;
|
||||
}
|
||||
.course-share {
|
||||
display: flex;
|
||||
gap: 7px;
|
||||
position: relative;
|
||||
width: fit-content;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.course-share-item {
|
||||
padding: 4px;
|
||||
font-size: 24px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.course-copied {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
transition: visibility 0.7s;
|
||||
z-index: 10;
|
||||
transform: translate(100%);
|
||||
white-space: nowrap;
|
||||
background: white;
|
||||
padding: 8px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.course-copied-show {
|
||||
opacity: 1;
|
||||
}
|
||||
.course-video {
|
||||
height: fit-content;
|
||||
flex: 1 1 0px;
|
||||
align-self: center;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
.course-banner-wrapper {
|
||||
background: var(--green-light);
|
||||
}
|
||||
.course-banner {
|
||||
padding-top: 40px;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
.course-banner-image {
|
||||
width: 100%;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.course-banner-title {
|
||||
color: var(--green);
|
||||
font-weight: 700;
|
||||
}
|
||||
.course-banner-text {
|
||||
max-width: 800px;
|
||||
margin: 0 auto 20px;
|
||||
}
|
||||
.course-banner-text * {
|
||||
background: none !important;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1024px) {
|
||||
.course-video {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.course-banner {
|
||||
padding-top: 80px;
|
||||
padding-bottom: 80px;
|
||||
}
|
||||
.course-banner-image {
|
||||
margin-bottom: 0;
|
||||
flex: 1 1 0px;
|
||||
width: 0;
|
||||
object-fit: contain;
|
||||
}
|
||||
.course-banner-title {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.course-banner-button {
|
||||
width: max-content;
|
||||
}
|
||||
.course-banner-wrapper-image .course-banner-content {
|
||||
flex: 1 1 0px;
|
||||
width: 0;
|
||||
align-self: center;
|
||||
}
|
||||
.course-banner-wrapper-image .course-banner {
|
||||
display: flex;
|
||||
flex-direction: row-reverse;
|
||||
gap: 40px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
function copyToClipboard() {
|
||||
navigator.clipboard.writeText(window.location.host + "{% route course_enrollment, code: course.enrollment_code %}");
|
||||
let copiedInfo = document.querySelector('.course-copied');
|
||||
copiedInfo.classList.add('course-copied-show');
|
||||
setTimeout(() => {
|
||||
copiedInfo.classList.remove('course-copied-show');
|
||||
}, 1500);
|
||||
}
|
||||
</script>
|
||||
@ -0,0 +1,79 @@
|
||||
{% assign instructor = course.instructors | first %}
|
||||
<div class="width-limit instructor-card">
|
||||
<h3 class="instructor-card-title">
|
||||
<span class="lang-en">Your host for the course</span>
|
||||
<span class="lang-de">Ihr Kursleiter</span>
|
||||
<span class="lang-es">Su anfitrión para el curso</span>
|
||||
<span class="lang-fr">Votre formateur/formatrice</span>
|
||||
<span class="lang-br">Apresentador do curso</span>
|
||||
</h3>
|
||||
<div class="instructor-card-body">
|
||||
<div class="instructor-image-container">
|
||||
<img class="instructor-image" src="{{ instructor.avatar_url }}" alt="{{ instructor.name }}">
|
||||
</div>
|
||||
<div class="instructor-text-container">
|
||||
<h4 class="instructor-bio">
|
||||
<svg class="opinion-quotes" width="26" height="23" viewBox="0 0 26 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M24 10C23.6818 11.3796 23.346 12.8476 22.9924 14.4041C22.6742 15.9605 22.3737 17.4816 22.0909 18.9673C21.8081 20.4177 21.5783 21.7619 21.4015 23L14.1364 23L13.7652 22.4163C14.0833 21.1429 14.4899 19.7986 14.9848 18.3837C15.4798 16.9687 16.0101 15.5361 16.5758 14.0857C17.1768 12.6354 17.7601 11.2735 18.3258 10L24 10ZM12.2348 10C11.9167 11.3796 11.5808 12.8476 11.2273 14.4041C10.9091 15.9605 10.6086 17.4816 10.3258 18.9673C10.0429 20.4177 9.81313 21.7619 9.63636 23L2.37121 23L2 22.4163C2.31818 21.1429 2.72475 19.7986 3.2197 18.3837C3.71465 16.9687 4.24495 15.5361 4.81061 14.0857C5.41162 12.6354 5.99495 11.2735 6.56061 10L12.2348 10Z" fill="var(--green)"/>
|
||||
</svg>
|
||||
{{ instructor.bio | strip_html }}
|
||||
</h4>
|
||||
<div class="instructor-name body-s strong">
|
||||
{{ instructor.name }},
|
||||
</div>
|
||||
<div class="instructor-title body-s">
|
||||
{{ instructor.title }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.instructor-card {
|
||||
margin-top: 40px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.instructor-card-title {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.instructor-image-container {
|
||||
margin-bottom: 20px;
|
||||
width: 100%;
|
||||
}
|
||||
.instructor-image {
|
||||
border-radius: 4px;
|
||||
width: 100%;
|
||||
margin: auto;
|
||||
}
|
||||
.instructor-bio {
|
||||
font-weight: 400;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.opinion-quotes {
|
||||
top: -7px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 768px) {
|
||||
.instructor-card {
|
||||
margin-top: 80px;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
.instructor-card-title {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.instructor-card-body {
|
||||
display: flex;
|
||||
}
|
||||
.instructor-image-container {
|
||||
margin-bottom: unset;
|
||||
flex-basis: 22%;
|
||||
min-width: 300px;
|
||||
margin-right: 50px;
|
||||
display: flex;
|
||||
}
|
||||
.instructor-text-container {
|
||||
flex-basis: 48%;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
File diff suppressed because one or more lines are too long
@ -0,0 +1,47 @@
|
||||
<div class="recommended-courses container width-limit">
|
||||
<h2 class="recommended-courses-title">
|
||||
<span class="lang-en">Courses you may find helpful</span>
|
||||
<span class="lang-de">Kurse, die Sie hilfreich finden könnten</span>
|
||||
<span class="lang-es">Cursos que pueden resultarle útiles</span>
|
||||
<span class="lang-fr">Cours qui pourraient vous être utiles</span>
|
||||
<span class="lang-br">Cursos que você pode achar útil</span>
|
||||
</h2>
|
||||
{% assign similar_count = 0 | plus: 0 %}
|
||||
{% assign categories_ids = course.categories | map: "id" %}
|
||||
<div class="recommended-courses-list row">
|
||||
{% for checked_course in courses.enrolled %}
|
||||
{% if checked_course.id != course.id and checked_course.ribbon != "VIDEO" %}
|
||||
{% for category in checked_course.categories %}
|
||||
{% if categories_ids contains category.id %}
|
||||
{% include 'cards_course' with checked_course as course %}
|
||||
{% assign similar_count = similar_count | plus: 1 %}
|
||||
{% break %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% if similar_count == 3 %} {% break %} {% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
{% if similar_count == 0 %}
|
||||
<style>
|
||||
.recommended-courses {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
{% endif %}
|
||||
<style>
|
||||
.recommended-courses-title {
|
||||
padding-bottom: 40px;
|
||||
padding-top: 40px;
|
||||
}
|
||||
.recommended-courses-list {
|
||||
border-bottom: 1px solid #E1E1FF;
|
||||
}
|
||||
@media only screen and (min-width: 768px) {
|
||||
.recommended-courses-list > div {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -0,0 +1,120 @@
|
||||
<div class="faq width-limit">
|
||||
<h2 class="faq-title">
|
||||
FAQ
|
||||
</h2>
|
||||
<div class="faq-list">
|
||||
<div class="faq-element" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question">
|
||||
<div class="faq-question-icon">
|
||||
<i class="far fa-angle-down faq-icon-closed"></i>
|
||||
<i class="far fa-angle-up faq-icon-opened"></i>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
At lectus urna duis convallis. Lacus sed viverra tellus in hac habitasse platea dictumst. Enim ut tellus elementum sagittis vitae et leo duis ut. Sed enim ut sem viverra aliquet eget. Urna cursus eget nunc scelerisque.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="faq-element" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question">
|
||||
<div class="faq-question-icon">
|
||||
<i class="far fa-angle-down faq-icon-closed"></i>
|
||||
<i class="far fa-angle-up faq-icon-opened"></i>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
Nunc pulvinar sapien et ligula ullamcorper malesuada proin. Odio ut enim blandit volutpat maecenas volutpat blandit aliquam etiam. Odio euismod lacinia at quis. Eget mauris pharetra et ultrices. Justo nec ultrices dui sapien eget mi proin sed libero. Erat velit scelerisque in dictum non consectetur a. Varius vel pharetra vel turpis nunc. Id aliquet risus feugiat in ante metus dictum at. Tincidunt augue interdum velit euismod in pellentesque massa. Habitant morbi tristique senectus et. Commodo viverra maecenas accumsan lacus vel facilisis volutpat est velit. Iaculis urna id volutpat lacus. Nisl nisi scelerisque eu ultrices vitae. A lacus vestibulum sed arcu. Diam sit amet nisl suscipit. Varius quam quisque id diam vel.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="faq-element" onclick="this.classList.toggle('open')">
|
||||
<div class="faq-question">
|
||||
<div class="faq-question-icon">
|
||||
<i class="far fa-angle-down faq-icon-closed"></i>
|
||||
<i class="far fa-angle-up faq-icon-opened"></i>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
Libero id faucibus nisl tincidunt eget. Porttitor eget
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer body-s">
|
||||
In ante metus dictum at tempor commodo ullamcorper. Aliquet nec ullamcorper sit amet risus nullam eget. Faucibus vitae aliquet nec ullamcorper
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.faq {
|
||||
padding-top: 60px;
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
.faq-title {
|
||||
padding-bottom: 40px;
|
||||
border-bottom: 1px solid #E4E6E9;
|
||||
}
|
||||
.faq-element {
|
||||
border-bottom: 1px solid #E4E6E9;
|
||||
padding: 20px 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
.faq-question {
|
||||
display: flex;
|
||||
}
|
||||
.faq-question-icon {
|
||||
cursor: pointer;
|
||||
background: #F4F5F6;
|
||||
border-radius: 50%;
|
||||
margin-right: 20px;
|
||||
position: relative;
|
||||
display: flex;
|
||||
height: fit-content;
|
||||
align-self: center;
|
||||
}
|
||||
.faq-question-icon > i {
|
||||
height: 36px;
|
||||
width: 36px;
|
||||
}
|
||||
.faq-question-icon > i::before {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
.faq-icon-opened {
|
||||
display: none;
|
||||
}
|
||||
.faq-answer {
|
||||
display: none;
|
||||
margin-left: 56px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.faq-element.open .faq-icon-opened {
|
||||
display: block;
|
||||
}
|
||||
.faq-element.open .faq-icon-closed {
|
||||
display: none;
|
||||
}
|
||||
.faq-element.open .faq-answer {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 768px) {
|
||||
.faq {
|
||||
padding-top: 80px;
|
||||
padding-bottom: 80px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
function toggleFAQ(element) {
|
||||
element.classList.toggle('open')
|
||||
}
|
||||
</script>
|
||||
@ -4,97 +4,170 @@
|
||||
<p class="footer-links-section-title">
|
||||
Pipedrive
|
||||
</p>
|
||||
<a class="footer-links-section-item" href="">
|
||||
About
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Pricing
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Jobs
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Blog
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Newsroom
|
||||
</a>
|
||||
<a class="footer-links-section-item lang-en" href="https://www.pipedrive.com/en/about">About</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://www.pipedrive.com/de/about">Über</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://www.pipedrive.com/es/about">Acerca de</a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://www.pipedrive.com/fr/about">À propos</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://www.pipedrive.com/pt/about">Sobre</a>
|
||||
|
||||
<a class="footer-links-section-item lang-en" href="https://www.pipedrive.com/en/pricing">Pricing</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://www.pipedrive.com/de/pricing">Preise</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://www.pipedrive.com/es/pricing">Precios </a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://www.pipedrive.com/fr/pricing">Tarifs</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://www.pipedrive.com/pt/pricing">Preço</a>
|
||||
|
||||
<a class="footer-links-section-item lang-en" href="https://www.pipedrive.com/en/jobs">Jobs</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://www.pipedrive.com/en/jobs">Karriere</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://www.pipedrive.com/en/jobs">Trabajos</a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://www.pipedrive.com/en/jobs">Carrières</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://www.pipedrive.com/en/jobs">Carreiras</a>
|
||||
|
||||
<a class="footer-links-section-item lang-en" href="https://www.pipedrive.com/en/blog">Blog</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://www.pipedrive.com/de/blog">Blog</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://www.pipedrive.com/es/blog">Blog</a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://www.pipedrive.com/fr/blog">Blog</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://www.pipedrive.com/pt/blog">Blog</a>
|
||||
|
||||
<a class="footer-links-section-item lang-en" href="https://www.pipedrive.com/en/newsroom">Newsroom</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://www.pipedrive.com/de/newsroom">Newsroom</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://www.pipedrive.com/en/newsroom">Sala de noticias </a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://www.pipedrive.com/fr/newsroom">Newsroom</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://www.pipedrive.com/en/newsroom">Newsroom</a>
|
||||
</div>
|
||||
|
||||
<div class="footer-links-section">
|
||||
<p class="footer-links-section-title">
|
||||
Product
|
||||
<span class="lang-en">Product</span>
|
||||
<span class="lang-de">Produkt</span>
|
||||
<span class="lang-es">Producto</span>
|
||||
<span class="lang-fr">Produit</span>
|
||||
<span class="lang-br">Produto</span>
|
||||
</p>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Features
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Marketplace
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Mailigen
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Status
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
API
|
||||
</a>
|
||||
<a class="footer-links-section-item lang-en" href="https://www.pipedrive.com/en/products/sales">Sales software</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://www.pipedrive.com/de/products/sales">Produkte</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://www.pipedrive.com/es/products/sales">Productos</a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://www.pipedrive.com/fr/products/sales">Produits</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://www.pipedrive.com/pt/products/sales">Produtos</a>
|
||||
|
||||
<a class="footer-links-section-item lang-en" href="https://www.pipedrive.com/en/products">Features</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://www.pipedrive.com/de/products">Funktionen</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://www.pipedrive.com/es/products">Funciones</a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://www.pipedrive.com/fr/products">Fonctionnalités</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://www.pipedrive.com/pt/products">Recursos</a>
|
||||
|
||||
<a class="footer-links-section-item lang-en" href="https://www.pipedrive.com/en/features/privacy-security">Privacy and security</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://www.pipedrive.com/de/features/privacy-security">Datenschutz und Sicherheit</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://www.pipedrive.com/es/features/privacy-security">Privacidad y seguridad</a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://www.pipedrive.com/fr/features/privacy-security">Confidentialité et sécurité</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://www.pipedrive.com/pt/features/privacy-security">Privacidade e segurança</a>
|
||||
|
||||
<a class="footer-links-section-item lang-en" href="https://www.pipedrive.com/en/marketplace">Marketplace</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://www.pipedrive.com/en/marketplace">Integrationen</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://www.pipedrive.com/en/marketplace">Integraciones</a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://www.pipedrive.com/en/marketplace">Intégrations</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://www.pipedrive.com/en/marketplace">Integrações</a>
|
||||
|
||||
<a class="footer-links-section-item lang-en" href="https://status.pipedrive.com/">Status</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://status.pipedrive.com/">Status</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://status.pipedrive.com/">Estado</a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://status.pipedrive.com/">État du système</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://status.pipedrive.com/">Status</a>
|
||||
|
||||
<a class="footer-links-section-item lang-en" href="https://developers.pipedrive.com/">API</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://developers.pipedrive.com/">API</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://developers.pipedrive.com/">API</a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://developers.pipedrive.com/">API</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://developers.pipedrive.com/">API</a>
|
||||
</div>
|
||||
|
||||
<div class="footer-links-section">
|
||||
<p class="footer-links-section-title">
|
||||
Discover
|
||||
<span class="lang-en">Discover</span>
|
||||
<span class="lang-de">Entdecken</span>
|
||||
<span class="lang-es">Descubre</span>
|
||||
<span class="lang-fr">Découvrez</span>
|
||||
<span class="lang-br">Descubra</span>
|
||||
</p>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Partner Program
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Get our newsletter
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Sales Pipeline Course
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
What is CRM?
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
CRM comparison
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Resources
|
||||
</a>
|
||||
<a class="footer-links-section-item lang-en" href="https://www.pipedrive.com/en/partner">Partner Program</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://www.pipedrive.com/de/partner">Partnerprogramm</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://www.pipedrive.com/es/partner">Programa para socios</a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://www.pipedrive.com/fr/partner">Partenaires</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://www.pipedrive.com/pt/partner">Programa de parceria</a>
|
||||
|
||||
<a class="footer-links-section-item lang-en" href="https://www.pipedrive.com/en/blog/what-is-crm">What is CRM?</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://www.pipedrive.com/de/blog/was-ist-crm">Was bedeutet CRM?</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://www.pipedrive.com/es/blog/que-es-crm">¿Qué es CRM? </a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://www.pipedrive.com/fr/resources/what-is-crm">Qu'est-ce qu'un CRM ?</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://www.pipedrive.com/pt/blog/o-que-e-crm">O que é um CRM?</a>
|
||||
|
||||
<a class="footer-links-section-item lang-en" href="https://www.pipedrive.com/en/crm-comparison">CRM comparison</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://www.pipedrive.com/de/crm-comparison">CRM-Vergleich</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://www.pipedrive.com/es/crm-comparison">Comparación de CRM</a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://www.pipedrive.com/fr/crm-comparison">Comparatif des CRM</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://www.pipedrive.com/pt/crm-comparison">Comparação de CRM</a>
|
||||
|
||||
<a class="footer-links-section-item lang-en" href="https://www.pipedrive.com/en/resources">Resources</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://www.pipedrive.com/de/resources">Ressourcen</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://www.pipedrive.com/es/resources">Recursos</a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://www.pipedrive.com/fr/resources">Ressources</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://www.pipedrive.com/pt/resources">Ferramentas</a>
|
||||
</div>
|
||||
|
||||
<div class="footer-links-section">
|
||||
<p class="footer-links-section-title">
|
||||
Help Center
|
||||
<span class="lang-en">Help Center</span>
|
||||
<span class="lang-de">Support Center</span>
|
||||
<span class="lang-es">Centro de ayuda</span>
|
||||
<span class="lang-fr">Centre d'assistance</span>
|
||||
<span class="lang-br">Central de Ajuda</span>
|
||||
</p>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Home
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Community
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Community
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Academy
|
||||
</a>
|
||||
<a class="footer-links-section-item" href="">
|
||||
Support
|
||||
</a>
|
||||
<a class="footer-links-section-item lang-en" href="https://community.pipedrive.com/">Community</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://community.pipedrive.com/">Community</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://community.pipedrive.com/">Comunidad</a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://community.pipedrive.com/">Communauté</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://community.pipedrive.com/">Comunidade</a>
|
||||
|
||||
<a class="footer-links-section-item lang-en" href="https://support.pipedrive.com/en">Knowledge Base</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://support.pipedrive.com/de">Knowledge Base</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://support.pipedrive.com/es">Base de conocimiento</a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://support.pipedrive.com/fr">Base de connaissance</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://support.pipedrive.com/pt">Base de Conhecimento</a>
|
||||
|
||||
<a class="footer-links-section-item lang-en" href="https://www.pipedrive.com/en/academy">Academy</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://www.pipedrive.com/de/academy">Academy</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://www.pipedrive.com/es/academy">Academia</a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://www.pipedrive.com/fr/academy">Académie</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://www.pipedrive.com/pt/academy">Academia</a>
|
||||
|
||||
<a class="footer-links-section-item lang-en" href="https://support.pipedrive.com/en/contact-us">Support</a>
|
||||
<a class="footer-links-section-item lang-de" href="https://support.pipedrive.com/de/contact-us">Support</a>
|
||||
<a class="footer-links-section-item lang-es" href="https://support.pipedrive.com/es/contact-us">Asistencia</a>
|
||||
<a class="footer-links-section-item lang-fr" href="https://support.pipedrive.com/fr/contact-us">Assistance</a>
|
||||
<a class="footer-links-section-item lang-br" href="https://support.pipedrive.com/pt/contact-us">Suporte</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="footer-bottom">
|
||||
<div class="footer-bottom-row">
|
||||
<div class="footer-bottom-desktop-language np-hidden-mobile">
|
||||
<i class="fal fa-globe"></i>
|
||||
English
|
||||
<div class="footer-language-wrapper np-hidden-mobile">
|
||||
<div class="footer-language">
|
||||
<div class="footer-language-button">
|
||||
<i class="fal fa-globe"></i>
|
||||
<span class="lang-en">English</span>
|
||||
<span class="lang-de">Deutsch</span>
|
||||
<span class="lang-es">Español</span>
|
||||
<span class="lang-fr">Français</span>
|
||||
<span class="lang-br">Português (BR)</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-language-dropdown">
|
||||
<div data-lang="en" class="current-lang" onclick="changeLanguage(this.getAttribute('data-lang'))">English</div>
|
||||
<div data-lang="de" onclick="changeLanguage(this.getAttribute('data-lang'))">Deutsch</div>
|
||||
<div data-lang="es" onclick="changeLanguage(this.getAttribute('data-lang'))">Español</div>
|
||||
<div data-lang="fr" onclick="changeLanguage(this.getAttribute('data-lang'))">Français</div>
|
||||
<div data-lang="br" onclick="changeLanguage(this.getAttribute('data-lang'))">Português (BR)</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="footer-bottom-social">
|
||||
{% if website_footer.show_social_media_links? %}
|
||||
<div class="footer-bottom-social-list">
|
||||
@ -112,7 +185,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="footer-bottom-row">
|
||||
<div class="footer-bottom-row body-s">
|
||||
<div class="footer-bottom-links">
|
||||
<p class="footer-bottom-link-text">
|
||||
© {{ "now" | date: "%Y" }} Pipedrive
|
||||
@ -120,25 +193,31 @@
|
||||
<p class="footer-button-link-separator">
|
||||
|
|
||||
</p>
|
||||
<a class="footer-bottom-link" href="">
|
||||
Terms of service
|
||||
<a class="footer-bottom-link" href="https://www.pipedrive.com/en/terms-of-service">
|
||||
<span class="lang-en">Terms of service</span>
|
||||
<span class="lang-de">Allgemeine Geschäftsbedingungen</span>
|
||||
<span class="lang-es">Términos del servicio</span>
|
||||
<span class="lang-fr">Conditions d'utilisation</span>
|
||||
<span class="lang-br">Termos de serviço</span>
|
||||
</a>
|
||||
<p class="footer-button-link-separator">
|
||||
|
|
||||
</p>
|
||||
<a class="footer-bottom-link" href="">
|
||||
Privacy Policy
|
||||
</a>
|
||||
<p class="footer-button-link-separator">
|
||||
|
|
||||
</p>
|
||||
<a class="footer-bottom-link" href="">
|
||||
Site map
|
||||
<a class="footer-bottom-link" href="https://www.pipedrive.com/en/privacy">
|
||||
<span class="lang-en">Privacy Policy</span>
|
||||
<span class="lang-de">Datenschutzrichtlinie</span>
|
||||
<span class="lang-es">Política de privacidad</span>
|
||||
<span class="lang-fr">Politique de confidentialité</span>
|
||||
<span class="lang-br">Política de privacidade</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="footer-bottom-text">
|
||||
Pipedrive is a Web-based Sales
|
||||
<span class="lang-en">Pipedrive is a Web-based Sales CRM.</span>
|
||||
<span class="lang-de">Pipedrive ist ein webbasiertes Vertriebs-CRM.</span>
|
||||
<span class="lang-es">Pipedrive es un CRM de ventas basado en la web.</span>
|
||||
<span class="lang-fr">Pipedrive est un CRM commercial basé sur le Web.</span>
|
||||
<span class="lang-br">O Pipedrive é um CRM de vendas baseado na Web.</span>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@ -149,18 +228,69 @@
|
||||
padding-top: 40px;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
.footer-links-section {
|
||||
.footer-links {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-start;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.footer-links-section {
|
||||
margin-bottom: 40px;
|
||||
width:100%;
|
||||
}
|
||||
.footer-links-section-title {
|
||||
font-weight: 700;
|
||||
font-size: 18px;
|
||||
}
|
||||
.footer-links-section-item {
|
||||
font-size: 18px;
|
||||
line-height: 30px;
|
||||
margin-bottom: 10px;
|
||||
display: block;
|
||||
position: relative;
|
||||
width: fit-content;
|
||||
}
|
||||
.footer-links-section-item:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
right: 0;
|
||||
width: 0;
|
||||
bottom: 1px;
|
||||
background: #017737;
|
||||
height: 2px;
|
||||
opacity:0;
|
||||
transition:width 0.3s ease-out, opacity 0.3s ease-out;
|
||||
}
|
||||
.footer-links-section-item:hover:after,
|
||||
.footer-links-section-item:focus:after,
|
||||
.footer-links-section-item:active:after {
|
||||
left: 0;
|
||||
right: auto;
|
||||
width: 100%;
|
||||
opacity:1;
|
||||
}
|
||||
.footer-language-wrapper {
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
}
|
||||
.footer-language-dropdown {
|
||||
position: absolute;
|
||||
display: none;
|
||||
box-shadow: 0px 3px 5px rgba(0, 0, 0, .08), 0px 0px 4px rgba(0,0,0,.12);
|
||||
bottom: 35px;
|
||||
left: 10%;
|
||||
background: #FFF;
|
||||
padding: 10px 0;
|
||||
}
|
||||
.footer-language-dropdown.show {
|
||||
display: block;
|
||||
}
|
||||
.footer-language-dropdown > div {
|
||||
padding: 5px 10px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.footer-language-dropdown > div:hover {
|
||||
text-decoration: underline;
|
||||
background-color: #e4e6e9;
|
||||
}
|
||||
.footer-language-dropdown .current-lang {
|
||||
background-color: #edeef0;
|
||||
}
|
||||
.footer-bottom-links {
|
||||
display: flex;
|
||||
@ -193,10 +323,16 @@
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 768px) {
|
||||
.main-footer {
|
||||
padding-top: 80px;
|
||||
}
|
||||
.footer-links {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.footer-links-section {
|
||||
width:50%;
|
||||
}
|
||||
.footer-bottom-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
@ -209,4 +345,17 @@
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width:1200px) {
|
||||
.footer-links-section {
|
||||
width: calc(25% - 40px);
|
||||
margin-right: 40px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
document.querySelector(".footer-language-wrapper").addEventListener('click', () => {
|
||||
document.querySelector('.footer-language-dropdown').classList.toggle('show');
|
||||
});
|
||||
</script>
|
||||
|
||||
@ -2,17 +2,19 @@
|
||||
<div class="green-banner width-limit">
|
||||
<img class="green-banner-image" alt="banner image" src="{{ banner_image_url }}">
|
||||
<div class="green-banner-content">
|
||||
<div class="green-banner-title">
|
||||
<h1 class="green-banner-title">
|
||||
{{ banner_title }}
|
||||
</div>
|
||||
</h1>
|
||||
<div class="green-banner-text">
|
||||
{{ banner_text }}
|
||||
</div>
|
||||
<div class="green-banner-button button-large button-1">
|
||||
<a href="{{ banner_button_link }}">
|
||||
{{ banner_button_text }}
|
||||
</a>
|
||||
</div>
|
||||
{% unless current_person.signed_in? %}
|
||||
<div class="button-wrapper">
|
||||
<a class="green-banner-button button-large button-1" href="{{ banner_button_link }}">
|
||||
{{ banner_button_text }}
|
||||
</a>
|
||||
</div>
|
||||
{% endunless %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -0,0 +1,20 @@
|
||||
<div class="green-banner-wrapper green-banner-wrapper-image green-banner-wrapper-image-alt">
|
||||
<div class="green-banner width-limit">
|
||||
<img class="green-banner-image" alt="banner image" src="{{ banner_image_url }}">
|
||||
<div class="green-banner-content">
|
||||
<h3 class="green-banner-title">
|
||||
{{ banner_title }}
|
||||
</h3>
|
||||
<div class="green-banner-text">
|
||||
{{ banner_text }}
|
||||
</div>
|
||||
{% unless current_person.signed_in? %}
|
||||
<div class="button-wrapper">
|
||||
<a class="green-banner-button button-large button-1" href="{{ banner_button_link }}">
|
||||
{{ banner_button_text }}
|
||||
</a>
|
||||
</div>
|
||||
{% endunless %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -1,13 +1,13 @@
|
||||
<div class="green-banner-wrapper green-banner-wrapper-text">
|
||||
<div class="green-banner width-limit">
|
||||
<div class="green-banner-title">
|
||||
<h1 class="green-banner-title">
|
||||
{{ banner_title }}
|
||||
</div>
|
||||
</h1>
|
||||
<div class="green-banner-text">
|
||||
{{ banner_text }}
|
||||
</div>
|
||||
<div class="green-banner-button button-large button-1">
|
||||
<a href="{{ banner_button_link }}">
|
||||
<div class="button-wrapper">
|
||||
<a class="green-banner-button button-large button-1" href="{{ banner_button_link }}">
|
||||
{{ banner_button_text }}
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@ -0,0 +1,16 @@
|
||||
<div class="green-banner-wrapper green-banner-wrapper-text-bg-image">
|
||||
<img class="green-banner-bg-image" src="https://s3.amazonaws.com/static.northpass.com/pipedrive/banner_background_image.png">
|
||||
<div class="green-banner width-limit">
|
||||
<h3 class="green-banner-title">
|
||||
{{ banner_title }}
|
||||
</h3>
|
||||
<div class="green-banner-text">
|
||||
{{ banner_text }}
|
||||
</div>
|
||||
<div class="button-wrapper">
|
||||
<a class="green-banner-button button-large button-1" href="{{ banner_button_link }}">
|
||||
{{ banner_button_text }}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -2,5 +2,304 @@
|
||||
{% styles colors %}
|
||||
{% styles custom %}
|
||||
|
||||
<script type="text/javascript" async src="https://play.vidyard.com/embed/v4.js"></script>
|
||||
|
||||
<!-- fontawesome inclusion -->
|
||||
<script src="https://kit.fontawesome.com/41a3aee3ad.js" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- clamping text to given number of lines -->
|
||||
<script src="https://s3.amazonaws.com/static.northpass.com/JS+scripts/clamp.js" type="module"></script>
|
||||
|
||||
<!-- JavaScript Bundle with Popper -->
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.7/dist/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
|
||||
{% include "cookie_banner" %}
|
||||
|
||||
<!-- language scripts -->
|
||||
<script>
|
||||
// changing language
|
||||
function changeLanguage(newLanguage, sendRequest=true) {
|
||||
document.querySelector(".languages-dropdown").classList.remove('show');
|
||||
if (!window.current_language || window.current_language !== newLanguage) {
|
||||
window.current_language = newLanguage
|
||||
} else {
|
||||
console.log('language already selected')
|
||||
return null
|
||||
}
|
||||
|
||||
document.querySelectorAll('.current-lang').forEach(activeElement => {
|
||||
activeElement.classList.remove('current-lang');
|
||||
});
|
||||
document.querySelectorAll(`[data-lang="${newLanguage}"]`).forEach(newLanguageElement => {
|
||||
newLanguageElement.classList.add('current-lang');
|
||||
});
|
||||
{% if current_person.signed_in? and current_school.properties.sandbox == false %}
|
||||
if (sendRequest) {
|
||||
let xhr = new XMLHttpRequest();
|
||||
{% if current_school.sso_active? %}
|
||||
var url = "https://www.workato.com/webhooks/rest/bd1a1eb7-7e79-4208-a1db-8e9c7440bcc9/pipedrive-sso-change-user-language";
|
||||
{% else %}
|
||||
var url = "https://www.workato.com/webhooks/rest/bd1a1eb7-7e79-4208-a1db-8e9c7440bcc9/pipedrive-open-change-user-language";
|
||||
{% endif %}
|
||||
xhr.open("POST", url, true);
|
||||
xhr.send(JSON.stringify({
|
||||
user_id: '{{ current_person.id }}',
|
||||
language: newLanguage
|
||||
}));
|
||||
}
|
||||
{% endif %}
|
||||
|
||||
window.localStorage.setItem('academy-language', newLanguage);
|
||||
document.querySelector('body').className = `lang-${newLanguage}`;
|
||||
|
||||
}
|
||||
|
||||
// setup body class based on property or cookies
|
||||
function setupInitialLanguage() {
|
||||
let userStorageLanguage = window.localStorage.getItem('academy-language');
|
||||
{% if current_person.signed_in? and current_person.properties.user_language contains 'missing property' %}
|
||||
{% assign property_missing = true %}
|
||||
{% else %}
|
||||
{% assign property_missing = false %}
|
||||
{% endif %}
|
||||
{% if current_person.signed_in? and current_person.properties.user_language != 'NULL' and property_missing == false %}
|
||||
var selectedLanguage = "{{ current_person.properties.user_language }}";
|
||||
{% else %}
|
||||
var selectedLanguage = userStorageLanguage || "en";
|
||||
{% endif %}
|
||||
if (['en', 'de', 'es', 'fr', 'br'].includes(selectedLanguage)) {
|
||||
changeLanguage(selectedLanguage, false);
|
||||
} else {
|
||||
changeLanguage('en', false);
|
||||
console.log('wrong language initialized', selectedLanguage);
|
||||
window.current_language = 'en';
|
||||
}
|
||||
|
||||
|
||||
const pathParts = window.location.pathname.split('/').slice(1);
|
||||
|
||||
if (
|
||||
(pathParts.length === 1 && pathParts[0] === 'app') ||
|
||||
(pathParts.length === 2 && (pathParts[0] === 'app' && (pathParts[1] === 'video-tutorials' || pathParts[1] === 'catalog')))
|
||||
) {
|
||||
selectedLanguage = 'en';
|
||||
} else if (
|
||||
window.location.pathname.includes('/de-homepage') ||
|
||||
window.location.pathname.includes('/de-video-tutorials') ||
|
||||
window.location.pathname.includes('/de-catalog')
|
||||
) {
|
||||
selectedLanguage = 'de';
|
||||
} else if (
|
||||
window.location.pathname.includes('/es-homepage') ||
|
||||
window.location.pathname.includes('/es-video-tutorials') ||
|
||||
window.location.pathname.includes('/es-catalog')
|
||||
) {
|
||||
selectedLanguage = 'es';
|
||||
} else if (
|
||||
window.location.pathname.includes('/fr-homepage') ||
|
||||
window.location.pathname.includes('/fr-video-tutorials') ||
|
||||
window.location.pathname.includes('/fr-catalog')
|
||||
) {
|
||||
selectedLanguage = 'fr';
|
||||
} else if (
|
||||
window.location.pathname.includes('/br-homepage') ||
|
||||
window.location.pathname.includes('/br-video-tutorials') ||
|
||||
window.location.pathname.includes('/br-catalog')
|
||||
) {
|
||||
selectedLanguage = 'br';
|
||||
} else {
|
||||
selectedLanguage = 'en';
|
||||
}
|
||||
|
||||
|
||||
changeLanguage(selectedLanguage, false);
|
||||
|
||||
}
|
||||
|
||||
addEventListener('DOMContentLoaded', () => {
|
||||
setupInitialLanguage();
|
||||
});
|
||||
|
||||
function redirectToLanguageHomepage(language) {
|
||||
let homepageUrl = '';
|
||||
|
||||
switch (window.current_language) {
|
||||
case 'de':
|
||||
homepageUrl = '/app/de-homepage';
|
||||
break;
|
||||
case 'es':
|
||||
homepageUrl = '/app/es-homepage';
|
||||
break;
|
||||
case 'fr':
|
||||
homepageUrl = '/app/fr-homepage';
|
||||
break;
|
||||
case 'br':
|
||||
homepageUrl = '/app/br-homepage';
|
||||
break;
|
||||
default:
|
||||
homepageUrl = '/app';
|
||||
break;
|
||||
}
|
||||
|
||||
window.location.href = homepageUrl;
|
||||
}
|
||||
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
const academyLanguage = window.localStorage.getItem('academy-language');
|
||||
const url = window.location.href;
|
||||
const lastSegment = url.substring(url.lastIndexOf('/') + 1);
|
||||
console.log(academyLanguage);
|
||||
function redirectToRightPage() {
|
||||
let catalogUrl = '';
|
||||
let videoUrl = '';
|
||||
let homepageUrl = '';
|
||||
|
||||
if (window.location.href.includes('/app/catalog')) {
|
||||
switch (academyLanguage) {
|
||||
case 'de':
|
||||
catalogUrl = '/app/de-catalog';
|
||||
break;
|
||||
case 'es':
|
||||
catalogUrl = '/app/es-catalog';
|
||||
break;
|
||||
case 'fr':
|
||||
catalogUrl = '/app/fr-catalog';
|
||||
break;
|
||||
case 'br':
|
||||
catalogUrl = '/app/br-catalog';
|
||||
break;
|
||||
case 'en':
|
||||
catalogUrl = '/app/catalog';
|
||||
return;
|
||||
}
|
||||
window.location.href = catalogUrl;
|
||||
}
|
||||
else if (window.location.href.includes('/app/video-tutorials')) {
|
||||
switch (academyLanguage) {
|
||||
case 'de':
|
||||
videoUrl = '/app/de-video-tutorials';
|
||||
break;
|
||||
case 'es':
|
||||
videoUrl = '/app/es-video-tutorials';
|
||||
break;
|
||||
case 'fr':
|
||||
videoUrl = '/app/fr-video-tutorials';
|
||||
break;
|
||||
case 'br':
|
||||
videoUrl = '/app/br-video-tutorials';
|
||||
break;
|
||||
case 'en':
|
||||
videoUrl = '/app/catalog';
|
||||
return;
|
||||
}
|
||||
window.location.href = videoUrl;
|
||||
}
|
||||
else if (lastSegment === 'app') {
|
||||
switch (academyLanguage) {
|
||||
case 'de':
|
||||
homepageUrl = '/app/de-homepage';
|
||||
break;
|
||||
case 'es':
|
||||
homepageUrl = '/app/es-homepage';
|
||||
break;
|
||||
case 'fr':
|
||||
homepageUrl = '/app/fr-homepage';
|
||||
break;
|
||||
case 'br':
|
||||
homepageUrl = '/app/br-homepage';
|
||||
break;
|
||||
case 'en':
|
||||
homepageUrl = '/app';
|
||||
return;
|
||||
}
|
||||
window.location.href = homepageUrl;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
redirectToRightPage();
|
||||
});
|
||||
|
||||
const academyLanguage = window.localStorage.getItem('academy-language');
|
||||
console.log(academyLanguage);
|
||||
</script>
|
||||
|
||||
<!--Function to display proper courses based on language value-->
|
||||
<script>
|
||||
function filterCoursesByLanguage() {
|
||||
var selectedLanguage = localStorage.getItem('academy-language');
|
||||
var courses = document.querySelectorAll('.homepage-card-wrapper, .course-card');
|
||||
|
||||
if (!courses.length) {
|
||||
return; // Nie ma żadnych kursów na stronie
|
||||
}
|
||||
|
||||
for (var i = 0; i < courses.length; i++) {
|
||||
var course = courses[i];
|
||||
var courseLanguage = course.getAttribute('language');
|
||||
|
||||
if (selectedLanguage && courseLanguage !== selectedLanguage) {
|
||||
course.style.display = 'none'; // Ukryj kursy o nieodpowiednim języku
|
||||
} else {
|
||||
course.style.display = 'block'; // Pokaż kursy o wybranym języku
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Wywołanie funkcji po załadowaniu strony
|
||||
window.addEventListener('DOMContentLoaded', filterCoursesByLanguage);
|
||||
|
||||
// Wywołanie funkcji po zmianie wartości w local storage
|
||||
window.addEventListener('storage', filterCoursesByLanguage);
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<!-- on SSO school redirect new users to setup their name -->
|
||||
{% if current_person.signed_in? and current_school.sso_active? %}
|
||||
{% unless current_person.first_name %}
|
||||
<script>
|
||||
if ("{{ current_person.email }}".includes('+preview-') === false &&
|
||||
window.location.pathname !== "/app/profile-settings" &&
|
||||
!window.sessionStorage.getItem('nameSetup'))
|
||||
{
|
||||
window.location.replace('/app/profile-settings')
|
||||
}
|
||||
|
||||
</script>
|
||||
{% endunless %}
|
||||
{% endif %}
|
||||
|
||||
<!-- clear last video filter when leaving video tutorials pages -->
|
||||
<script>
|
||||
if (window.location.pathname !== '/app/video-tutorials' &&
|
||||
!window.location.pathname.includes('/app/courses/'))
|
||||
{
|
||||
window.sessionStorage.removeItem('last-selected-video-filter')
|
||||
}
|
||||
</script>
|
||||
|
||||
{% include 'seo_logo' %}
|
||||
|
||||
{% if current_school.sso_active? and current_person.signed_in? == false %}
|
||||
{% include 'sso_login_widget' %}
|
||||
{% endif %}
|
||||
|
||||
{% if current_school.sso_active? %}
|
||||
{% if current_person.signed_in? %}
|
||||
<script>
|
||||
if (window.location.pathname === '/app' && window.sessionStorage.sso_last_page) {
|
||||
let new_url = window.sessionStorage.sso_last_page;
|
||||
window.sessionStorage.sso_last_page = ''
|
||||
window.location.replace(new_url);
|
||||
}
|
||||
</script>
|
||||
{% else %}
|
||||
<script>
|
||||
window.sessionStorage.sso_last_page = window.location.pathname;
|
||||
</script>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user