2012-07-09 15:33:21 +00:00
{% extends "notification/notice_template.html" %}
2012-07-09 19:47:38 +00:00
{% load humanize %}
{% with transaction.campaign.work.title as title %}
{% with transaction.campaign.work.id as work_id %}
{% with transaction.amount as amount %}
{% url work work_id as work_url %}
{% url emailshare 'pledge' as pledge_url %}
2012-07-09 15:33:21 +00:00
{% block comments_book %}
2012-07-09 19:47:38 +00:00
< a href = "{{ work_url }}?tab=2" > < img src = "{{ transaction.campaign.work.cover_image_thumbnail }}" alt = "cover image for {{ title }}" / > < / a >
2012-07-09 15:33:21 +00:00
{% endblock %}
{% block comments_graphical %}
2012-07-09 19:47:38 +00:00
You've just pledged ${{ amount|intcomma }} to < a href = "{{ work_url }}" > {{ title }}< / a > .
2012-07-09 15:33:21 +00:00
{% endblock %}
{% block comments_textual %}
2012-07-09 19:47:38 +00:00
< p > Thank you, {{ transaction.user.username }}!< / p >
< p > You've just pledged ${{ amount|intcomma }} to < a href = "{{ work_url }}" > {{ title }}< / a > . If it reaches its goal of ${{ transaction.campaign.target|intcomma }} by {{ transaction.campaign.deadline|date:"M d Y"}}, it will be unglued for all to enjoy.< / p >
< p > You can help even more by sharing this campaign with your friends!< / p >
{% include "notification/sharing_block.html" %}
< p > Thanks for being part of Unglue.it.< / p >
< p > The unglue.it team.< / p >
2012-07-09 15:33:21 +00:00
{% endblock %}
2012-05-30 00:50:53 +00:00
{% endwith %}{% endwith %}{% endwith %}