{% if data_for_print : %}
{% for row in data_for_print : %}
{{ print_title or 'DELEGATE INDEX' }}
{% if conf_id == 36 %} Reg No {% else: %} Del.No {% endif %} |
Name/Membership No. |
Email/Mobile |
MC No./ MC State |
Role |
{% if total_conf_days : %}
{% if total_conf_days == 1 : %}
Signature |
{% else : %}
{% set days_1 = total_conf_days +1 %}
{% for i in range(1 ,days_1 ) %}
Day {{ i }} |
{% endfor %}
{% endif %}
{% endif %}
{% for r in row : %}
{% if r.counter: %} {{r.counter or '' }} - {% endif %} {% if r.batch : %} {{r.batch or '' }} - {% endif %} {{ r.delegate_no or '' }}
|
{{r.full_name or '' }} |
{{r.email or '' }} {% if r.mobile %} / {{ r.mobile or '' }} {% endif %}
|
{{ r.state_name or '' }} |
{{ r.role or '' }} |
{% if total_conf_days : %}
{% if total_conf_days == 1 : %}
|
{% else : %}
{% set days_1 = total_conf_days +1 %}
{% for i in range(1 ,days_1 ) %}
|
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}