{% extends "base.html" %} {% block title %}Gestión de Artículos del Blog{% endblock %} {% block content %}

Gestión de Artículos del Blog

Administre los artículos del blog desde esta interfaz.

{% for article in articles %} {% endfor %}
ID Título URL Estado Fecha Acciones
{{ article.id }} {{ article.title }} {{ article.slug }} {% if article.is_published %} Publicado {% else %} Borrador {% endif %} {{ article.created_at }}
{# Pagination controls #} {% if pagination.total > 0 %} {% endif %}
{% endblock %} {% block extra_styles %} {% endblock %} {% block scripts %} {% endblock %}