2019-09-04 16:50:27 +00:00
|
|
|
= render 'layouts/breadcrumb',
|
2019-09-12 16:57:25 +00:00
|
|
|
crumbs: [link_to(t('sites.index.title'), sites_path),
|
2019-09-04 16:50:27 +00:00
|
|
|
@site.name,
|
|
|
|
link_to(t('posts.index'),
|
|
|
|
site_posts_path(@site)),
|
|
|
|
@category]
|
|
|
|
|
2019-09-12 18:10:01 +00:00
|
|
|
%main.row
|
2019-11-14 17:46:59 +00:00
|
|
|
%aside.menu.col-md-3
|
2020-05-30 23:50:39 +00:00
|
|
|
%h1
|
|
|
|
= link_to @site.title, @site.url
|
|
|
|
%p.lead= @site.description
|
2018-01-29 22:19:10 +00:00
|
|
|
|
2020-05-30 23:50:39 +00:00
|
|
|
%h3= t('posts.new')
|
|
|
|
%ul
|
|
|
|
- @site.layouts.to_h.keys.each do |layout|
|
|
|
|
%li= link_to @site.i18n.dig('layouts', layout.to_s) || layout.to_s.humanize,
|
|
|
|
new_site_post_path(@site, layout: layout)
|
2018-02-03 22:37:09 +00:00
|
|
|
|
2019-09-12 18:10:01 +00:00
|
|
|
- if policy(@site).edit?
|
|
|
|
= link_to t('sites.edit.btn', site: @site.title),
|
|
|
|
edit_site_path(@site), class: 'btn'
|
|
|
|
|
|
|
|
= render 'sites/build', site: @site
|
|
|
|
|
|
|
|
%section.col
|
2018-04-30 18:51:39 +00:00
|
|
|
= render 'layouts/flash'
|
2019-12-11 20:05:31 +00:00
|
|
|
- if @posts.empty?
|
|
|
|
%h2= t('posts.none')
|
|
|
|
- else
|
|
|
|
= form_tag site_posts_reorder_path, method: :post do
|
2020-05-23 15:38:03 +00:00
|
|
|
.d-flex.justify-content-between.align-items-center
|
|
|
|
= submit_tag t('posts.reorder'), class: 'btn submit-reorder'
|
|
|
|
|
|
|
|
-#
|
|
|
|
TODO: Pensar una interfaz mejor para cuando haya más de tres
|
|
|
|
idiomas
|
2020-05-26 19:47:16 +00:00
|
|
|
- unless @site.locales.length == 1
|
|
|
|
.locales
|
|
|
|
- @site.locales.each do |locale|
|
|
|
|
= link_to t("locales.#{locale}.name"), site_posts_path(@site, locale: locale),
|
|
|
|
class: "mr-2 mt-2 mb-2#{locale == @locale ? 'active font-weight-bold' : ''}"
|
2019-12-11 20:05:31 +00:00
|
|
|
%table.table.table-condensed.table-draggable
|
|
|
|
%tbody
|
2020-05-23 18:42:12 +00:00
|
|
|
- dir = t("locales.#{@locale}.dir")
|
2019-12-11 20:05:31 +00:00
|
|
|
- @posts.each_with_index do |post, i|
|
|
|
|
-#
|
|
|
|
saltearse el post a menos que esté en la categoría por
|
|
|
|
la que estamos filtrando
|
|
|
|
- if @category
|
|
|
|
- next unless post.attributes.include? :categories
|
|
|
|
- next unless post.categories.value.include?(@category)
|
|
|
|
- if @layout
|
|
|
|
- next unless post.layout.name == @layout
|
2020-01-02 18:05:28 +00:00
|
|
|
- next unless @usuarie || policy(post).show?
|
2020-05-11 20:28:38 +00:00
|
|
|
-#
|
|
|
|
TODO: Solo les usuaries cachean porque tenemos que separar
|
|
|
|
les botones por permisos.
|
2020-05-12 13:13:38 +00:00
|
|
|
- cache_if @usuarie, post do
|
2020-05-11 20:28:38 +00:00
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
.handle
|
|
|
|
= image_tag 'arrows-alt-v.svg'
|
|
|
|
-# Orden más alto es mayor prioridad
|
|
|
|
= hidden_field 'post[reorder]', post.uuid.value,
|
|
|
|
value: @posts.length - i, class: 'reorder'
|
2020-05-23 18:42:12 +00:00
|
|
|
%td{ class: dir }
|
2020-05-11 20:28:38 +00:00
|
|
|
%small
|
|
|
|
= link_to @site.i18n.dig('layouts', post.layout.name.to_s) || post.layout.name.to_s.humanize,
|
|
|
|
site_posts_path(@site, layout: post.layout.name)
|
|
|
|
%br/
|
2020-05-23 18:42:12 +00:00
|
|
|
= link_to site_post_path(@site, post.id) do
|
|
|
|
%span{ lang: post.lang.value, dir: dir }= post.title.value
|
2020-05-11 20:28:38 +00:00
|
|
|
- if post.attributes.include? :draft
|
|
|
|
- if post.draft.value
|
|
|
|
%span.badge.badge-primary
|
|
|
|
= post_label_t(:draft, post: post)
|
|
|
|
- if post.attributes.include? :categories
|
|
|
|
- unless post.categories.value.empty?
|
|
|
|
%br
|
|
|
|
%small
|
|
|
|
- post.categories.value.each do |c|
|
2020-05-23 18:42:12 +00:00
|
|
|
= link_to site_posts_path(@site, category: c) do
|
|
|
|
%span{ lang: post.lang.value, dir: dir }= c
|
2018-04-27 20:24:28 +00:00
|
|
|
|
2020-05-11 20:28:38 +00:00
|
|
|
%td
|
|
|
|
= post.date.value.strftime('%F')
|
|
|
|
%br/
|
|
|
|
= post.try(:order).try(:value)
|
|
|
|
%td
|
|
|
|
- if @usuarie || policy(post).edit?
|
|
|
|
= link_to t('posts.edit'),
|
|
|
|
edit_site_post_path(@site, post.id),
|
|
|
|
class: 'btn'
|
|
|
|
- if @usuarie || policy(post).destroy?
|
|
|
|
= link_to t('posts.destroy'),
|
|
|
|
site_post_path(@site, post.id),
|
|
|
|
class: 'btn',
|
|
|
|
method: :delete,
|
|
|
|
data: { confirm: t('posts.confirm_destroy') }
|