{% extends "madga/studio/base.html" %} {% load i18n madga_studio_tags %} {% block title %}Posts · {{ site.name|default:"MADGA" }}{% endblock %} {% block breadcrumbs %}Posts{% endblock %} {% block content %}

Posts

Todo lo que has publicado, programado o tienes en borrador.

{% studio_btn label="Nuevo post" href="/studio/posts/new/" variant="primary" icon="plus" %}
{% for tab in tabs %} {{ tab.label }}{{ tab.count }} {% endfor %}
{{ paginator.count }} resultado{{ paginator.count|pluralize }}
{% csrf_token %}
{% include "madga/studio/components/post_list_rows.html" %}
{% if page_obj.paginator.num_pages > 1 %} {% include "madga/studio/components/pagination.html" with page_obj=page_obj %} {% endif %}
{% endblock %}