mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 17:16:22 +00:00
20 lines
530 B
Text
20 lines
530 B
Text
- host = instance['domain']
|
|
- host ||= instance['uri']
|
|
- hosthttps = "https://#{host}"
|
|
|
|
.row.no-gutters.pt-2
|
|
.col-1
|
|
= render 'components/checkbox', id: host
|
|
.col-11
|
|
%h4
|
|
%a{ href: hosthttps }= instance['title']
|
|
%p= instance['description'].html_safe
|
|
%dl.d-inline-flex
|
|
%dt.pr-2= t('.users')
|
|
%dd
|
|
= instance.dig('usage', 'users', 'active_month')
|
|
= instance.dig('stats', 'user_count')
|
|
|
|
-# Botones moderación
|
|
.d-flex.pb-4
|
|
= render 'components/instances_btn_box'
|