21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-05 10:15:09 +02:00
chexpire/app/views/notifications_mailer/recurrent_failures.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

23 lines
336 B
Plaintext

<p>
Salut,
<br />
<br />
<%= t(".header", count: @checks.count) %>
</p>
<%- @checks.each_with_index do |check, index| %>
<%- if index > 0 -%>
<br />
<br />
<br />
<%- end -%>
<%= render "#{check.kind}_recurrent_failure", check: check %>
<%- end -%>
<br />
<br />
<%= render "footer_recurrent_failures" %>