{% if row.image_path: %}
{% set url = row.image_path+(row.image_name or '') %}
{% endif %}
{% if row.full_name :%}
{{ row.full_name.upper() }}
{% endif %}
{% if not row.full_name :%}
{% if row.role and row.role not in ['TRADE','VOLUNTEER','SPOT','ACCOMPANYING PERSON']%}
{{ row.role or '' | safe }}
{% else %}
{% endif %}
{% else : %}
{% endif %}
{% set new_del_no = 0 %}
{% set del_no_1 = 0 %}
{% if row.counter %} {{row.counter or ''}} - {% endif %}
{% if row.batch :%} {{row.batch or '' }} - {% endif %}
{% if row.delegate_no %}
{% set del_no_1 = row.delegate_no %}
{% if del_no_1 < 10 %}
{% set new_del_no = "00"+str(del_no_1) %}
{% elif del_no_1 > 9 and del_no_1 < 100 %}
{% set new_del_no = "0"+str(del_no_1) %}
{% else: %}
{% if row.del_no_prefix: %}
{% set new_del_no = row.del_no_prefix+str(del_no_1) %}
{% else : %}
{% set new_del_no = str(del_no_1) %}
{% endif %}
{% endif %}
{{new_del_no}}
{% endif%}