Sindbad~EG File Manager
{% extends 'conferenceapp/email/email_layout.html' %}
{% block head %}
{% endblock %}
{% block title %}Receipt Mail{% endblock %}
{% block content %}
<tbody >
<tr>
<td colspan="2"style="text-align:center;color:#dc396f;font-weight: bold;text-transform:uppercase;"><span><h3>Receipt</h3></span></td>
</tr>
<tr>
<td> <span >Receipt number</span> </td>
<td> <span>{{receipt_data.receipt_no or ''}}</span> </td>
</tr>
<!--{% if receipt_data.membership_no : %}-->
<!-- <tr>-->
<!-- <td>Membership Number</td>-->
<!-- <td>{{receipt_data.membership_no or ''}}</td>-->
<!-- </tr>-->
<!-- {% endif %}-->
<tr>
<td>Payment Date</td>
<td>{% if receipt_data.paid_at: %} {{receipt_data.paid_at.strftime('%d-%m-%Y %H:%M:%S') or ''}}{% endif %}</td>
</tr>
<tr>
<td>Paid By</td>
<td>
{% 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 %}
</td>
</tr>
<tr>
<td>Delegate Information</td>
<td> {{receipt_data.delegate_details | safe }} </td>
</tr>
<tr>
<td> Total Amount</td>
{% if amount_with_commas == "Free" :%}
<td>
<!-- Rs.0 -->
Free
<!-- ({{ amount_in_words}} Rupees Only) -->
</td>
{% else: %}
<td> Rs.{{amount_with_commas}} ({{ amount_in_words}} Rupees Only)</td>
{% endif %}
</tr>
<tr>
<td> Payment method</td>
<td> {{receipt_data.payment_method or ''}}</td>
</tr>
<tr>
<td> Payment Status</td>
<td> {{receipt_data.payment_status or ''}}</td>
</tr>
{% if receipt_data.api_payment_id %}
<tr>
<td> Reference Number</td>
<td> {{receipt_data.api_payment_id or ''}}</td>
</tr>
{% endif %}
<!-- {% if receipt_data.remarks %}
<tr>
<td> Remarks</td>
<td> {{receipt_data.remarks or ''}}</td>
</tr>
{% endif %} -->
<tr>
<td colspan="2">
<p style="font-weight: bold;">This is an auto-generated email and hence no signature affixed.</p>
<p style="font-weight: bold;">For assistance, please write to {{receipt_data.e_support_email or ''}} and expect a response in two working days. </p>
</td>
</tr>
</tbody>
{% endblock %}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists