mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 04:11:41 +00:00
18 lines
402 B
Text
18 lines
402 B
Text
|
%h1= t('.hi')
|
||
|
|
||
|
= sanitize_markdown t('.explanation', fqdn: @deploy_local.fqdn),
|
||
|
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]
|