2012-07-09 15:33:21 +00:00
{% extends "notification/notice_template.html" %}
2012-05-29 12:55:16 +00:00
{% load humanize %}
2012-07-09 15:33:21 +00:00
{% block comments_book %}
2012-07-16 15:50:31 +00:00
< a href = "{% url work transaction.campaign.work.id %}" > < img src = "{{ transaction.campaign.work.cover_image_small }}" alt = "cover image for {{ transaction.campaign.work.title }}" / > < / a >
2012-07-09 15:33:21 +00:00
{% endblock %}
2012-07-16 17:29:20 +00:00
{% block comments_graphical %}
2012-07-16 15:50:31 +00:00
Your pledge for the campaign to unglue {{ transaction.campaign.work.title }} has been {% if up_or_down == 'canceled'%}canceled{% else %}modified{% endif %}.
2012-07-09 15:33:21 +00:00
{% endblock %}
2012-07-16 17:29:20 +00:00
{% block comments_textual %}
{% if up_or_down == 'canceled' %}
Your canceled pledge was as follows:< br / >
Amount: ${{ transaction.amount|intcomma }}< br / >
Premium: {% if transaction.premium %}{{ transaction.premium.description }}{% else %}None requested{% endif %}< br / >
{% else %}
Your new pledge is as follows:< br / >
Amount: ${{ transaction.amount|intcomma }}< br / >
2012-10-13 03:45:09 +00:00
Premium: {% if transaction.premium %}{{ transaction.premium.description }}{% else %}None requested{% endif %}< br / > < 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-13 03:45:09 +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-13 03:45:09 +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-13 03:45:09 +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-13 03:45:09 +00:00
{% endif %}< / ul >
2012-07-16 17:29:20 +00:00
Thank you for your continued support of {{ transaction.campaign.work.title }}.
{% endif %}
{% endblock %}