mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:11:42 +00:00
17 lines
488 B
Text
17 lines
488 B
Text
= render 'layouts/breadcrumb',
|
|
crumbs: [link_to(t('sites.index.title'), sites_path),
|
|
link_to(@site.name, site_path(@site)), t('.title')]
|
|
|
|
.row
|
|
.col
|
|
%h1= t('.title')
|
|
%p.lead= t('.help')
|
|
|
|
%table.table.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
|