-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(invitation_email): add conditionnal rendering for new template
- Loading branch information
1 parent
6b4cac3
commit 9110671
Showing
5 changed files
with
47 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
{% extends "transactional_base.html" %} | ||
{% import 'button.html' as button %} | ||
|
||
{% block subject %} | ||
{{ company_name }} vous invite à rejoindre Mobilic | ||
{% endblock %} | ||
|
||
{% block body %} | ||
<p>Bonjour{% if first_name %} {{first_name | capitalize}}{% endif %},</p> | ||
{% if not first_name %} | ||
<p>Bonjour{% if first_name %} {{ first_name | capitalize }}{% endif %},</p> | ||
{% if scheduled_reminder %} | ||
<p>L'entreprise <strong>{{ company_name | upper }}</strong> vous rappelle que vous avez été invité à créer votre compte | ||
sur <strong>Mobilic</strong>, l'outil numérique pour suivre et protéger vos droits en tant que salarié.</p> | ||
<p>Grâce à <strong>Mobilic</strong>, vous pourrez facilement :</p> | ||
<ul> | ||
<li>Enregistrer vos heures de travail en toute simplicité</li> | ||
<li>Assurer le respect de vos droits au quotidien</li> | ||
</ul> | ||
<p><strong>Il vous suffit de quelques clics pour activer votre compte et être prêt(e) à l'utiliser ! </strong></p> | ||
<p>Cliquez sur le bouton ci-dessous pour créer votre compte ou l'associer à <strong>{{ company_name | upper }}</strong> :</p> | ||
{{ button.button('Activer mon compte', invitation_link) }} | ||
<p><strong>Petit rappel important :</strong> L’enregistrement de votre temps de travail via Mobilic ou le livret | ||
individuel de contrôle (LIC) est obligatoire dans votre secteur.</p> | ||
<p>À très bientôt sur Mobilic !</p> | ||
{% else %} | ||
<p> | ||
{% if reminder %} | ||
L'entreprise <strong>{{company_name | upper}}</strong> vous rappelle que vous avez été invité | ||
L'entreprise <strong>{{ company_name | upper }}</strong> vous rappelle que vous avez été invité | ||
{% else %} | ||
Vous avez été invité(e) par l’entreprise <strong>{{company_name | upper}}</strong> | ||
Vous avez été invité(e) par l’entreprise <strong>{{ company_name | upper }}</strong> | ||
{% endif %} à créer un compte Mobilic pour enregistrer votre temps de travail.</p> | ||
<p>Mobilic est la plateforme gouvernementale qui simplifie <strong>l'enregistrement et le suivi du temps de travail</strong> des travailleurs mobiles du transport routier léger et du déménagement.</p> | ||
<p>Pour créer votre compte ou rattacher votre compte existant à l'entreprise <strong>{{company_name | upper}}</strong> cliquez sur le bouton d'activation suivant :</p> | ||
{{button.button('Activer mon compte', invitation_link)}} | ||
{% else %} | ||
<p> | ||
{% if reminder %} | ||
L'entreprise <strong>{{company_name | upper}}</strong> vous rappelle que vous avez été invité à la rejoindre | ||
{% else %} | ||
Vous avez été invité(e) à rejoindre l'entreprise <strong>{{company_name | upper}}</strong> | ||
{% endif %} sur Mobilic. | ||
</p> | ||
<p>Pour rattacher votre compte à l'entreprise <strong>{{company_name | upper}}</strong> cliquez sur le bouton d'activation suivant :</p> | ||
{{button.button('Activer mon compte', invitation_link)}} | ||
<p>Pour créer votre compte ou rattacher votre compte existant à l'entreprise <strong>{{ company_name | upper }}</strong> cliquez sur le bouton d'activation suivant :</p> | ||
{{ button.button('Activer mon compte', invitation_link) }} | ||
{% endif %} | ||
<p>Bien à vous,</p> | ||
{% endblock %} |
This file was deleted.
Oops, something went wrong.