Skip to content

Commit

Permalink
Meilleure information sur moderna en rappel (#1018)
Browse files Browse the repository at this point in the history
  • Loading branch information
mininao authored Dec 9, 2021
1 parent e47966f commit cfad12c
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export const vaccineTypes = [
{
value: "moderna",
label: "Moderna",
minimumMinAge: 30,
},
{
value: "janssen",
Expand Down
25 changes: 18 additions & 7 deletions app/views/match_mailer/match_confirmation_instructions.mjml
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,38 @@
<mj-section padding-top="15px" padding-bottom="15px">
<mj-column>
<mj-text padding-bottom="0px">
<h1>Une dose de vaccin est disponible près de chez vous !</h1>
<br />
<strong>Si vous souhaitez en bénéficier, réservez la dose en confirmant le rendez-vous :</strong>
<h1>Une dose de vaccin <%= @match.campaign.vaccine_type.capitalize %> est disponible près de chez vous !</h1>
<br/>
<% if @match.campaign.vaccine_type == Vaccine::Brands::MODERNA || @match.campaign.vaccine_type ==
Vaccine::Brands::PFIZER %>
Ce vaccin <%= @match.campaign.vaccine_type.capitalize %> est <strong>utilisable comme dose de rappel peu importe
le vaccin
utilisé précédemment.</strong>
<% else %>
Ce vaccin <%= @match.campaign.vaccine_type.capitalize %> n'est pas utilisable comme dose de rappel.
<% end %>
<br/>
Si vous souhaitez en bénéficier, <strong>réservez la dose en confirmant le rendez-vous :</strong>
</mj-text>
<mj-button href="<%= match_url(match_confirmation_token: @match_confirmation_token, source: 'email') %>" padding-bottom="0px">
<mj-button href="<%= match_url(match_confirmation_token: @match_confirmation_token, source: 'email') %>"
padding-bottom="0px">
Réserver mon vaccin
</mj-button>
<mj-text>
<strong>Si le lien ne fonctionne pas</strong>, copiez et collez l’adresse suivante dans votre navigateur :
<br />
<br/>
<%= match_url(match_confirmation_token: @match_confirmation_token, source: 'email') %>
</mj-text>
<mj-text padding-bottom="0px">
<strong>Vous ne souhaitez plus être informé de doses disponibles ?</strong>
</mj-text>
<mj-button href="<%= confirm_destroy_profile_url(authentication_token: authentication_token) %>" padding-bottom="0px">
<mj-button href="<%= confirm_destroy_profile_url(authentication_token: authentication_token) %>"
padding-bottom="0px">
Supprimer mon compte
</mj-button>
<mj-text>
<strong>Si le lien ne fonctionne pas</strong>, copiez et collez l’adresse suivante dans votre navigateur :
<br />
<br/>
<%= confirm_destroy_profile_url(authentication_token: authentication_token) %>
</mj-text>
<%= render partial: "mailer/social_networks", formats: [:html] %>
Expand Down
8 changes: 7 additions & 1 deletion app/views/matches/_match_details.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@
<div class="col-sm-12 col-md-6 col-lg-6">
<%= icon("fas", "check-circle") %>
<strong>Type de vaccin</strong>
<p><%= match.campaign.vaccine_type.capitalize %></p>
<p><%= match.campaign.vaccine_type.capitalize %> <br>
<% if match.campaign.vaccine_type == Vaccine::Brands::MODERNA || match.campaign.vaccine_type == Vaccine::Brands::PFIZER %>
<strong>Utilisable comme dose de rappel peu importe le vaccin utilisé précédemment.</strong>
<% else %>
Non utilisable comme dose de rappel.
<% end %>
</p>
</div>
</div>

0 comments on commit cfad12c

Please sign in to comment.