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

21 lines
575 B
Plaintext
Raw Normal View History

2023-04-15 21:36:56 +00:00
%main.row
%aside.menu.col-md-3
= render 'sites/header', site: @site
2023-04-15 21:36:56 +00:00
.col
%h1= t('.title')
%table.table
%thead
%tr
- @headers.each do |header|
%th{ scope: 'col' }= header
%tbody
- @table.each do |row|
- row[:urls].each do |url|
%tr
%th{ scope: 'row' }= row[:title]
2023-04-15 22:24:45 +00:00
%td= link_to_if url.present?, url, url, class: 'word-break-all'
2023-04-15 21:36:56 +00:00
%td
%time{ datetime: row[:seconds][:machine] }= row[:seconds][:human]
%td= row[:size]