{% extends 'base.html.twig' %} {% block title %}Income{% endblock %} {% block content %} {% if isCurrentMonth %}
{% for key, pd in paydays %}
{{ pd.label }} {{ pd.date|date('l, d M') }} {% if pd.daysUntil == 0 %} Today! ๐ŸŽ‰ {% elseif pd.daysUntil == 1 %} Tomorrow {% else %} In {{ pd.daysUntil }} days {% endif %}
{% endfor %}
{% endif %} {# โ”€โ”€ Income tabs โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ #}
{% if incomes|length > 0 %}
{% else %}

No income added for this month yet.

Add your salary
{% endif %} {% endblock %}