diff --git a/app/dashboard/templates/dashboard/referral.html b/app/dashboard/templates/dashboard/referral.html index fe959a29..70e71984 100644 --- a/app/dashboard/templates/dashboard/referral.html +++ b/app/dashboard/templates/dashboard/referral.html @@ -36,12 +36,17 @@ - - {% if referral.nb_user() > 0 %} + {% set nb_user = referral.nb_user() %} + {% set nb_paid_user = referral.nb_paid_user() %} + {% if nb_user > 0 %}
- {{ referral.nb_user() }} - {% if referral.nb_user() == 1 %} person {% else %} people {% endif %} - has protected their emails thanks to you! + {{ nb_user }} + {% if nb_user == 1 %} person {% else %} people {% endif %} + has protected their emails thanks to you!
+ + Among them, {{ nb_paid_user }} + {% if nb_paid_user == 1 %} person {% else %} people {% endif %} + has upgraded their accounts.
{% endif %}