{% extends "/AdminTheme/base_admin.html" %} {% block content %}

Posts

{% set published = 0 %} {% for post in posts %} {% if post.status == '1'%} {% set published = published + 1 %} {% endif %} {% endfor %}

All({{posts|length}}) | Published({{published}})

{% for post in posts %} {% endfor %}
# Title Modified At Action
{{ loop.index }} {{ post.title }} {{post.modifiedAt}}
{% endblock %} {% block script %} {% endblock %}