All Subscribers {{ all }}
{% set types = ['Daily','Monthly','Semester','Annual'] %}
{% for type in types %}
{%
set temp = type == 'Daily' ?
daily : type == 'Monthly'?
monthly : type == 'Semester'?
semester : annual
%}{%
set num = type == 'Daily' ?
number[0] : type == 'Monthly'?
number[1] : type == 'Semester'?
number[2] : number[3]
%}
{{ type }}
{{ temp.user.firstname ??'لايوجد مشترك بهذه الباقة حتى الان' ~ ' ' ~ temp.user.lastname ??'' }}
{{ temp.user.country ??'لايوجد مشترك بهذه الباقة حتى الان' }}
{{ num }}
{% endfor %}