mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 04:31:41 +00:00
19 lines
519 B
Text
19 lines
519 B
Text
|
.row
|
||
|
.col
|
||
|
= render 'layouts/breadcrumb',
|
||
|
crumbs: [link_to(t('sites.index'), sites_path),
|
||
|
link_to(@site.name, site_path(@site)), t('.title')]
|
||
|
.row
|
||
|
.col
|
||
|
%h1= t('.title')
|
||
|
%p.lead= t('.help')
|
||
|
|
||
|
%table.table.table-striped.table-condensed
|
||
|
%tbody
|
||
|
%tr
|
||
|
%td= t('.build.average')
|
||
|
%td= distance_of_time_in_words_if_more_than_a_minute @build_avg
|
||
|
%tr
|
||
|
%td= t('.build.maximum')
|
||
|
%td= distance_of_time_in_words_if_more_than_a_minute @build_max
|