Display Data:
Employee Name is : {{ ename }}
Employee Salary is : {{ salary }}
Employee City is : {{ city }}
Employee Mobile Numbers :
{% for num in mobile %}
{{ num }},
{% endfor %}
{% if 10 > 15 %}
I am from if block
{% elif 30 > 20 %}
I am from elif block
{% else %}
I am from else block
{% endif %}