Posts management ({{ posts_count }})

View and manage all published posts.

{% block posts %} {% if posts.is_empty() %}

No data to display

The request did not return any data.

{% else %}
{% for post in posts %} {% include "dashboard/posts/card.html" %} {% endfor %}
{% endif %}
Page: {{ posts_current_page }}
{% endblock %}