This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
email: ajout du template pour les structures à modérer
- Loading branch information
Showing
2 changed files
with
56 additions
and
0 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
26 changes: 26 additions & 0 deletions
26
dora/users/templates/notification_structure_moderation_for_manager.mjml
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{% extends "email-base.mjml" %} | ||
|
||
{% block preview %}Connectez-cous à votre tableau de bord gestionnaire{% endblock %} | ||
|
||
{% block content %} | ||
<p> | ||
<strong>Bonjour,</strong> | ||
</p> | ||
<p> | ||
{{ structures|length }} structure(s) sont à modérer sur votre tableau de bord gestionnaire. | ||
</p> | ||
<p>Pour rappel, la modération permet de s’assurer de la bonne qualité de l’offre d’insertion référencée sur votre territoire.</p> | ||
<p>Merci de vérifier que ces structures ont bien leur place sur Dora et que les administrateurs auto-déclarés en sont bien membres (le format du mail étant un bon indicateur).</p> | ||
<p>Les structures en attente de modération : | ||
<ul> | ||
{% for structure in structures %} | ||
<li>{{ structure }}</li> | ||
{% endfor %} | ||
</ul> | ||
</p> | ||
{% endblock %} | ||
|
||
{% block cta %} | ||
<mj-button mj-class="cta" href="{{ cta_link }}">MODÉRER les structures</mj-button> | ||
<mj-spacer height="24px"/> | ||
{% endblock %} |