{% set current_theme = current_theme() %} {{ current_theme.headertags() }} {{ current_theme.local_style() }} {{ _('Administración de Blog') }} {{ current_theme.navbar() }}
{{ current_theme.notify() }}

{{ _('Administración de Blog') }}

{{ _('Nueva entrada') }}
{% if posts %}
{% for post in posts %} {% endfor %}
{{ _('Título') }} {{ _('Autor') }} {{ _('Estado') }} {{ _('Comentarios') }} {{ _('Fecha') }} {{ _('Acciones') }}
{% if post.status == 'published' %} {{ post.title }} {% else %} {{ post.title }} {% endif %} {{ post.author.nombre }} {{ post.author.apellido or '' }} {% if post.status == 'draft' %} {{ _('Borrador') }} {% elif post.status == 'pending' %} {{ _('Pendiente') }} {% elif post.status == 'published' %} {{ _('Publicada') }} {% elif post.status == 'banned' %} {{ _('Baneada') }} {% endif %} {% if post.allow_comments %} {{ post.comment_count }} {% else %} {{ _('Deshabilitados') }} {% endif %} {% if post.published_at %} {{ post.published_at.strftime('%d/%m/%Y') }} {% else %} {{ post.fecha_alta.strftime('%d/%m/%Y') }} {% endif %} {{ _('Editar') }} {% if post.status == 'pending' %} {{ _('Aprobar') }} {% endif %} {% if post.status != 'banned' %} {{ _('Banear') }} {% endif %}
{% if pagination.pages > 1 %} {% endif %} {% else %}
{{ _('No hay entradas de blog') }} {% if current_status != 'all' %}{{ _('con estado') }} "{{ current_status }}"{% endif %} {{ _('en este momento.') }}
{% endif %}