21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-05 18:25:09 +02:00
chexpire/app/views/notifications_mailer/_domain_recurrent_failure.fr.html.erb
Colin Darie ea610ee185
Notifications grouped of checks in error to user email.
This is not dependent of Notificatioon model.
2018-08-01 23:09:08 +02:00

19 lines
651 B
Plaintext

<p>
<strong>Domaine: <%= check.domain %></strong> (<%= check.consecutive_failures %> erreurs consécutives)
<br />
<%- if check.domain_expires_at.present? %>
Dernière date d'expiration connue : <%= format_utc(check.domain_expires_at) %>.
<br />
<% end %>
<%- if check.last_success_at.present? %>
Dernière vérification réussie : <%= format_utc(check.last_success_at) %>.
<% end %>
</p>
<p>
Si vous avez supprimé le domaine ou ne l'avez pas renouvellé, merci de désactiver la vérification associée, avec ce lien :<br />
<%= link_to nil, edit_check_url(check) %>
</p>
<%= render "check_comment_vendor", check: check %>