{% 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 %}