mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 04:21:41 +00:00
13 lines
335 B
Text
13 lines
335 B
Text
|
= "# #{t('.hi')}"
|
||
|
\
|
||
|
= t('.explanation', fqdn: @deploy_local.fqdn)
|
||
|
\
|
||
|
= 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')
|