5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-03 01:26:08 +00:00
panel/app/views/deploy_mailer/deployed.html.haml

22 lines
502 B
Plaintext
Raw Normal View History

%h1= @hi
2019-07-26 00:36:33 +00:00
= sanitize_markdown @explanation, tags: %w[p a strong em]
2019-07-26 00:36:33 +00:00
%table
%thead
%tr
- @headers.each do |header|
%th= header
2019-07-26 00:36:33 +00:00
%tbody
- @table.each do |row|
- row[:urls].each do |url|
%tr
%td= row[:title]
%td= row[:status]
%td= link_to_if url.present?, url, url
%td
%time{ datetime: row[:seconds][:machine] }= row[:seconds][:human]
%td= row[:size]
2019-07-26 00:36:33 +00:00
= sanitize_markdown @help, tags: %w[p a strong em]