2012-10-14 21:42:28 +00:00
{% load humanize %}
2013-12-15 06:43:17 +00:00
{% load libraryauthtags %}
2012-10-14 21:42:28 +00:00
< div class = "trans_summary" >
2013-12-15 05:31:06 +00:00
{% ifequal transaction.campaign.type 1 %}
2012-10-14 21:42:28 +00:00
Your pledge: ${{transaction.amount|intcomma}}.< br / >
Your premium: {% if transaction.premium %}{{ transaction.premium.description }}{% else %}You did not request a premium for this campaign.{% endif %}< br / >
{% if transaction.anonymous %}You asked to pledge anonymously, so you will be counted but not named on the list of supporters.< br / > {% endif %}< br / >
Acknowledgements: < ul >
< li > The unglued ebook will be delivered to your inbox.< / li >
{% if not transaction.anonymous %}
{% ifequal transaction.tier 1 %}
2013-08-18 19:21:55 +00:00
< li > You will be listed as a Supporter using the name "< i > {{ transaction.extra.ack_name }}< / i > ".< / li >
2012-10-14 21:42:28 +00:00
{% endifequal %}
{% ifequal transaction.tier 2 %}
2013-08-18 19:21:55 +00:00
< li > You will be listed as a Benefactor using the name "< i > {{ transaction.extra.ack_name }}< / i > " with a link to your Unglue.it supporter page.< / li >
2012-10-14 21:42:28 +00:00
{% endifequal %}
{% ifequal transaction.tier 3 %}
2013-08-18 19:21:55 +00:00
< li > You will be listed as a Bibliophile using the name "< i > {{ transaction.extra.ack_name }}< / i > " with a link to your Unglue.it supporter page.< / li >
2012-10-14 21:42:28 +00:00
{% endifequal %}
{% endif %}
2013-08-18 19:21:55 +00:00
{% if transaction.extra.ack_dedication %}
< li > The following dedication will be included: < i > {{ transaction.extra.ack_dedication }}< / i > < / li >
2012-10-14 21:42:28 +00:00
{% endif %}
< / ul >
2013-12-15 05:31:06 +00:00
{% endifequal %}
{% ifequal transaction.campaign.type 2 %}
{% ifequal transaction.host 'credit' %}
Amount: ${{transaction.max_amount|intcomma}}.< br / >
This amount has been deducted from your Unglue.it credit balance.< br / >
2013-12-18 16:17:54 +00:00
You have ${{request.user.credit.available|default:"0"}} of credit left.< br / >
2013-12-15 05:31:06 +00:00
{% else %}
Total: ${{transaction.max_amount|intcomma}}.< br / >
{% if transaction.max_amount > transaction.amount %}
Your credit card has been charged ${{transaction.amount}}.< br / >
The rest has been deducted from your unglue.it credit balance.< br / >
2013-12-18 16:17:54 +00:00
You have ${{request.user.credit.available|default:"0"}} of credit left.< br / >
2013-12-15 05:31:06 +00:00
{% else %}
This amount has been charged to your credit card.< br / >
{% endif %}
{% endifequal %}
License type: {{ transaction.offer.get_license_display }}< br / >
{% ifequal transaction.offer.license 2 %}
Receiving library: {{ transaction.extra.library_id|libname }}< br / >
Number of copies: {{ transaction.extra.copies }}
{% endifequal %}
{% endifequal %}
2012-10-14 21:42:28 +00:00
< / div >