{% extends 'admin/base.html' %} {% block title %}{{ t('posts.title') }}{% endblock %} {% block content %}
{{ t('posts.subtitle') }}
| {{ t('table.title') }} | {{ t('table.status') }} | {{ t('table.language') }} | {{ t('table.author') }} | {{ t('table.published_date') }} | {{ t('table.updated_date') }} | {{ t('table.actions') }} |
|---|---|---|---|---|---|---|
|
{{ post.title }}
/{{ post.slug }}
|
{{ t('common.status_' + post.status) }} {% if post.translation_group in in_menu_groups %} š {{ t('pages.in_menu') }} {% endif %} | {{ post.language|upper }} | {{ post.author.username if post.author else 'ā' }} |
{% if post.published_at %}
{{ post.published_at|format_date }} {{ post.published_at.strftime('%H:%M') }} {% else %} ā {% endif %} |
{{ post.updated_at|format_date }} {{ post.updated_at.strftime('%H:%M') }} |
āļø {{ t('table.edit') }}
š {{ t('table.translate') }}
{% if post.status == 'published' %}
šļø {{ t('table.preview') }}
{% else %}
šļø {{ t('table.preview') }}
{% endif %}
|
{{ t('posts.try_adjusting') }}
{{ t('posts.clear_filters') }} {% else %}{{ t('posts.create_first') }}
{{ t('posts.create_first_btn') }} {% endif %}