5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-04 07:15:46 +00:00
panel/app/views/deploy_mailer/deployed.text.haml

13 lines
344 B
Plaintext
Raw Normal View History

2020-07-18 19:26:54 +00:00
= '# ' + t('.hi')
2019-07-26 00:36:33 +00:00
\
= t('.explanation', fqdn: @deploy_local.site.hostname)
2019-07-26 00:36:33 +00:00
\
= Terminal::Table.new do |table|
- table << [t('.th.type'), t('.th.status')]
- table.add_separator
- @deploys.each do |deploy, value|
- table << [t(".#{deploy}.title"),
value ? t(".#{deploy}.success") : t(".#{deploy}.error")]
\
= t('.help')