{% endif %}
{% endif %}
{% endfor %}
{% set pendCalcule = (pendingCount/10) %}
{% set decimal = pendCalcule - pendCalcule|round(0) %}
{% if decimal>0 %}
{% set pendCalcule = pendCalcule|round(0)+1 %}
{% endif %}
{% if pendCalcule > 1 %}
{% for i in 1 .. pendCalcule %}
{% if i == 1 %}
{{ i }}
{% else %}
{{ i }}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
Pending To Review
{% if entities | length > 0 %}
{% set reviewCount = 0 %}
{% for todo in entities | reverse %}
{% if todo.status == 5 %}
{% set reviewCount=reviewCount+1 %}
{% if reviewCount < 11 %}
{% endif %}
{% endfor %}
{% set rejectedCalcule = (rejectedCount/10) %}
{% set decimalRejected = rejectedCalcule - rejectedCalcule|round(0) %}
{% if decimalRejected >0 %}
{% set rejectedCalcule = rejectedCalcule|round(0)+1 %}
{% endif %}
{% if rejectedCalcule > 1 %}
{% for i in 1 .. rejectedCalcule %}
{% if i == 1 %}
{{ i }}
{% else %}
{{ i }}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
Published
{% if entities | length > 0 %}
{% set publicCount = 0 %}
{% for published in entities | reverse %}
{% if published.status == 1 %}
{% set publicCount=publicCount+1 %}
{% if publicCount < 11 %}
Published {{ published.user.title }}.{{ published.user.firstname }}