Chiffre d'affaire {{ current_month_name | title}} {{ current_year }}
{{ current_month_revenue|floatformat:2}} €
Chiffre d'affaire {{ previous_month_name | title}} {{ current_year }}
{{ previous_month_revenue|floatformat:2}} €
Chiffre d'affaires annuel
| Année | {% for month in get_month %}{{ month | title}} | {% endfor %}Total |
|---|---|---|
| {{ current_year}} | {% for revenue in current_monthly_revenue %}{{revenue|floatformat:2}} | {% endfor %}{{ current_year_revenue|floatformat:2 }} i |
| {{ previous_year }} | {% for revenue in previous_monthly_revenue %}{{revenue|floatformat:2}} | {% endfor %}{{ previous_year_revenue|floatformat:2 }} |
Abonnements / Services {{ current_year }}
| {% for month in get_month %} | {{ month | title}} | {% endfor %}Total |
|---|---|---|
| Full Time | {% for subscriptions in current_monthly_subscriptions_1 %}{{subscriptions}} | {% endfor %}{{ current_year_subscriptions_1 }} |
| Mid Time | {% for subscriptions in current_monthly_subscriptions_2 %}{{subscriptions}} | {% endfor %}{{ current_year_subscriptions_2 }} |
| Meeting 1 day | {% for subscriptions in current_monthly_subscriptions_3 %}{{subscriptions}} | {% endfor %}{{ current_year_subscriptions_3 }} |
Abonnements / Services {{ previous_year}}
| {% for month in get_month %} | {{ month | title}} | {% endfor %}Total |
|---|---|---|
| Full Time | {% for subscriptions in previous_monthly_subscriptions_1 %}{{subscriptions}} | {% endfor %}{{ previous_year_subscriptions_1 }} |
| Mid Time | {% for subscriptions in previous_monthly_subscriptions_2 %}{{subscriptions}} | {% endfor %}{{ previous_year_subscriptions_2 }} |
| Meeting 1 day | {% for subscriptions in previous_monthly_subscriptions_3 %}{{subscriptions}} | {% endfor %}{{ previous_year_subscriptions_3 }} |