5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-10-05 10:36:56 +00:00
panel/app/views/posts/index.haml

58 lines
2.2 KiB
Text
Raw Normal View History

2018-02-05 17:27:12 +00:00
.row
.col
2018-02-22 19:01:11 +00:00
= render 'layouts/breadcrumb',
crumbs: [ link_to(t('sites.index'), sites_path), @site.name, link_to(t('posts.index'), site_posts_path(@site)), @category ]
2018-02-26 19:59:55 +00:00
= render 'layouts/help', help: t('help.breadcrumbs')
.row
.col
2018-02-22 19:01:11 +00:00
%h1= @site.name_with_i18n(@lang)
2018-01-29 22:19:10 +00:00
.row
.col
2018-02-27 21:26:29 +00:00
.btn-group
= link_to t('posts.new'), new_site_post_path(@site, lang: @lang),
class: 'btn btn-success'
- I18n.available_locales.map(&:to_s).each do |l|
= link_to t("i18n.#{l}"), site_posts_path(@site, category: @category, lang: l),
class: 'btn btn-info'
.row
.col
2018-02-22 19:01:11 +00:00
- if @posts.present?
2018-04-27 20:24:28 +00:00
= form_tag site_reorder_posts_path, method: :post do
%table.table.table-condensed.table-striped.table-draggable
%tbody
- @posts.each_with_index do |post, i|
- if @category
-# saltearse el post a menos que esté en la categoría
-# por la que estamos filtrando
- next unless post.categories.include?(@category)
-# establecer la direccion del texto
- direction = post.get_front_matter(:dir)
%tr
%td
= fa_icon 'arrows-v', class: 'handle'
= text_field 'posts[order]', i, value: post.order || i, class: 'post_order'
%td{class: direction}
= link_to post.title, site_post_path(@site, post, lang: @lang)
%br
2018-02-22 19:01:11 +00:00
%small
2018-04-27 20:24:28 +00:00
- post.categories.each do |c|
= link_to c, site_posts_path(@site, category: c, lang: @lang),
data: { toggle: 'tooltip' }, title: t('help.category')
%td
- if post.translations
%small
- post.translations.each do |pt|
= link_to pt.title, site_post_path(@site, pt, lang: pt.lang),
data: { toggle: 'tooltip' }, title: t("i18n.#{pt.lang}")
%br
2018-02-22 19:01:11 +00:00
2018-04-27 20:24:28 +00:00
%td= post.date.strftime('%F')
%td= link_to t('posts.edit'),
edit_site_post_path(@site, post, lang: @lang),
class: 'btn btn-info'
2018-02-22 19:01:11 +00:00
- else
%h2= t('posts.none')