2019-09-12 18:10:01 +00:00
|
|
|
%main.row
|
2023-04-20 21:23:58 +00:00
|
|
|
%aside.col-12.col-lg-3
|
2019-09-12 18:10:01 +00:00
|
|
|
%h1= t('.title')
|
|
|
|
%p.lead= t('.help')
|
|
|
|
- if policy(Site).new?
|
|
|
|
= link_to t('sites.new.title'), new_site_path,
|
2024-05-02 19:25:20 +00:00
|
|
|
class: 'btn btn-secondary'
|
2018-02-26 19:59:55 +00:00
|
|
|
|
2019-09-12 18:10:01 +00:00
|
|
|
%section.col
|
2020-02-11 17:23:38 +00:00
|
|
|
- if @sites.empty?
|
|
|
|
:markdown
|
|
|
|
#{t('.welcome')}
|
2020-05-12 14:59:18 +00:00
|
|
|
|
2019-09-12 17:09:43 +00:00
|
|
|
%table.table.table-condensed
|
2018-02-05 17:27:12 +00:00
|
|
|
%tbody
|
|
|
|
- @sites.each do |site|
|
2022-12-30 13:55:10 +00:00
|
|
|
- next unless site.jekyll?
|
2024-03-21 21:12:12 +00:00
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%h2
|
|
|
|
- if policy(site).show?
|
2024-05-02 19:25:20 +00:00
|
|
|
= link_to site.title,
|
|
|
|
site_posts_path(site,
|
|
|
|
locale: site.default_locale)
|
2022-07-19 17:15:06 +00:00
|
|
|
- else
|
2024-03-21 21:12:12 +00:00
|
|
|
= site.title
|
|
|
|
%p.lead= site.description
|
2024-03-25 15:44:50 +00:00
|
|
|
.d-flex.flex-row
|
|
|
|
= link_to t('.visit'), site.url, class: 'btn btn-secondary'
|
|
|
|
- if current_usuarie.rol_for_site(site).temporal?
|
|
|
|
= render 'components/btn_base',
|
2024-05-02 19:25:20 +00:00
|
|
|
text: t('sites.invitations.accept'),
|
|
|
|
path: site_usuaries_accept_invitation_path(site),
|
|
|
|
title: t('help.sites.invitations.accept'),
|
|
|
|
class: 'btn-secondary'
|
2024-03-25 15:44:50 +00:00
|
|
|
= render 'components/btn_base',
|
2024-05-02 19:25:20 +00:00
|
|
|
text: t('sites.invitations.reject'),
|
|
|
|
path: site_usuaries_reject_invitation_path(site),
|
|
|
|
title: t('help.sites.invitations.reject'),
|
|
|
|
class: 'btn-secondary'
|
2024-03-25 15:44:50 +00:00
|
|
|
- else
|
2020-05-11 20:28:38 +00:00
|
|
|
- if policy(site).show?
|
2024-03-25 15:44:50 +00:00
|
|
|
= render 'layouts/btn_with_tooltip',
|
2024-05-02 19:25:20 +00:00
|
|
|
tooltip: t('help.sites.edit_posts'),
|
|
|
|
type: 'success',
|
|
|
|
link: site_path(site),
|
|
|
|
text: t('sites.posts')
|
2024-03-25 15:44:50 +00:00
|
|
|
= render 'sites/build', site: site
|
|
|
|
= render 'sites/moderation_queue', site: site
|
|
|
|
- if policy(SiteUsuarie.new(site, current_usuarie)).index?
|
|
|
|
= render 'layouts/btn_with_tooltip',
|
2024-05-02 19:25:20 +00:00
|
|
|
tooltip: t('usuaries.index.help.self'),
|
|
|
|
text: t('usuaries.index.title'),
|
|
|
|
type: 'info',
|
|
|
|
link: site_usuaries_path(site)
|