2015-04-28 03:24:02 +00:00
{% extends 'notification/notice_template.html' %}
2016-05-11 14:41:50 +00:00
2012-07-09 19:47:38 +00:00
{% load humanize %}
2012-07-09 15:33:21 +00:00
{% block comments_book %}
2017-10-28 22:33:58 +00:00
< a href = "{% url 'work' transaction.campaign.work_id %}?tab=2" > < img src = "{{ transaction.campaign.work.cover_image_thumbnail }}" alt = "cover image for {{ transaction.campaign.work.title }}" / > < / a >
2012-07-09 15:33:21 +00:00
{% endblock %}
{% block comments_graphical %}
2017-10-28 22:33:58 +00:00
You've just pledged ${{ transaction.amount|floatformat:2|intcomma }} to < a href = "{% url 'work' transaction.campaign.work_id %}" > {{ transaction.campaign.work.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 >
2017-10-28 22:33:58 +00:00
< p > You've just pledged ${{ transaction.amount|floatformat:2|intcomma }} to < a href = "{% url 'work' transaction.campaign.work_id %}" > {{ transaction.campaign.work.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 >
2012-07-09 19:47:38 +00:00
< p > You can help even more by sharing this campaign with your friends!< / p >
2017-10-28 22:33:58 +00:00
{% url 'work' transaction.campaign.work_id as work_url %}
2012-07-09 19:47:38 +00:00
{% include "notification/sharing_block.html" %}
< p > Thanks for being part of Unglue.it.< / p >
< p > The unglue.it team.< / p >
2012-07-16 15:50:31 +00:00
{% endblock %}