fr_gmail.j2 207 B

123456789
  1. Vous avez {{ unread }} i-maile
  2. {% set count = 1 %}
  3. {% if unread > 0 %}
  4. {% for subject in subjects %}
  5. i-maile {{ count }}. {{ subject }}
  6. {% set count = count + 1 %}
  7. {% endfor %}
  8. {% endif %}