{% if setting %}
{% ifequal setting "preferences" %}
|
|
| Email Login |
{{request.session.current_user}} |
{% endifequal %}
{% ifequal setting "payment" %}
|
|
| Credit |
xxxx-xxxx-xxxx-1234 |
| Debit |
xxxx-xxxx-xxxx-1234 |
{% endifequal %}
{% ifequal setting "history" %}
|
|
| Type |
Company |
Destination |
Book Date |
Total |
Card Number |
{% for obj in transactions %}
| {{obj.bookingType}} |
{{obj.companyName}} |
{{obj.location}} |
{{obj.bookingStartDate}} |
${{obj.paymentAmount}} |
{{obj.paymentCardNo}} |
{% endfor %}
{% endifequal %}
{% else %}
|
|
| Email Login |
{{request.session.current_user}} |
{% endif %}