5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-05 21:05:45 +00:00
panel/app/views/deploy_mailer/deployed.html.haml

18 lines
405 B
Plaintext
Raw Normal View History

2019-07-26 00:36:33 +00:00
%h1= t('.hi')
2021-08-02 01:05:59 +00:00
= sanitize_markdown t('.explanation', url: @site.deploy_local.url),
2019-07-26 00:36:33 +00:00
tags: %w[p a strong em]
%table
%thead
%tr
%th= t('.th.type')
%th= t('.th.status')
%tbody
- @deploys.each do |deploy, value|
%tr
%td= t(".#{deploy}.title")
%td= value ? t(".#{deploy}.success") : t(".#{deploy}.error")
= sanitize_markdown t('.help'), tags: %w[p a strong em]