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

{% trans "Posts" %}

{% trans "Everything you've published, scheduled, or have in draft." %}

{% studio_btn label=_("New post") href="/studio/posts/new/" variant="primary" icon="plus" %}
{% for tab in tabs %} {{ tab.label }}{{ tab.count }} {% endfor %}
{% blocktrans count n=paginator.count %}{{ n }} result{% plural %}{{ n }} results{% endblocktrans %}
{% 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 %}