{% extends 'admin/layout.html' %} {% block title %}Gestione Blog - Admin{% endblock %} {% block content %}
{% if posts %}
{% for post in posts %} {% endfor %}
ID Titolo Categoria Lingua Stato Visite Data Azioni
{{ post.id }} {{ post.title }} {% if post.featured %} In Evidenza {% endif %} {% if post.category %} {{ post.category.name }} {% else %} Nessuna {% endif %} IT {% if post.is_published %} Pubblicato {% else %} Bozza {% endif %} {{ post.views_count }} {{ (post.created_at|to_italy_time).strftime('%d/%m/%Y') }}
{% else %}
Nessun post trovato. Crea il primo post
{% endif %}
{% endblock %}