mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 20:26:22 +00:00
20 lines
683 B
Text
20 lines
683 B
Text
|
- link = nil
|
||
|
- if site.not_published_yet?
|
||
|
- message = t('.not_published_yet')
|
||
|
- if site.building?
|
||
|
- if site.average_publication_time_calculable?
|
||
|
- average_building_time = site.average_building_time
|
||
|
- elsif !site.similar_sites?
|
||
|
- average_building_time = 60
|
||
|
- else
|
||
|
- average_building_time = site.average_publication_time_for_similar_sites
|
||
|
|
||
|
- average_publication_time_human = distance_of_time_in_words average_building_time
|
||
|
- message = t('.building', average_time: average_publication_time_human, seconds: average_building_time)
|
||
|
- else
|
||
|
- message = t('.available')
|
||
|
- link = true
|
||
|
|
||
|
= render 'bootstrap/alert' do
|
||
|
= link_to_if link, message.html_safe, site.url
|