{% extends 'conferenceapp/email/email_layout.html' %} {% block head %} {% endblock %} {% block title %}Receipt Mail{% endblock %} {% block content %}

Receipt

Receipt number {{receipt_data.receipt_no or ''}} Payment Date {% if receipt_data.paid_at: %} {{receipt_data.paid_at.strftime('%d-%m-%Y %H:%M:%S') or ''}}{% endif %} Paid By {% if receipt_data.is_offline == 1 %} {{ receipt_data.full_name }} {% else %} {% if receipt_data.parent_email == receipt_data.email and receipt_data.parent_mobile == receipt_data.mobile %} {{ receipt_data.full_name }} {% else: %} {% if receipt_data.parent_email and receipt_data.parent_mobile %} {{ receipt_data.full_name }} {% elif receipt_data.parent_email == None and receipt_data.parent_mobile %} {{ receipt_data.full_name }} {% elif receipt_data.parent_email and receipt_data.parent_mobile == None %} {{ receipt_data.full_name }} {% else %} {% endif %} {% endif %} {% endif %} Delegate Information {{receipt_data.delegate_details | safe }} Total Amount {% if amount_with_commas == "Free" :%} Free {% else: %} Rs.{{amount_with_commas}} ({{ amount_in_words}} Rupees Only) {% endif %} Payment method {{receipt_data.payment_method or ''}} Payment Status {{receipt_data.payment_status or ''}} {% if receipt_data.api_payment_id %} Reference Number {{receipt_data.api_payment_id or ''}} {% endif %}

This is an auto-generated email and hence no signature affixed.

For assistance, please write to {{receipt_data.e_support_email or ''}} and expect a response in two working days.

{% endblock %}