regluit/frontend/templates/notification/pledge_you_have_pledged/notice.html

23 lines
1.2 KiB
HTML
Raw Normal View History

2015-04-28 03:24:02 +00:00
{% extends 'notification/notice_template.html' %}
2016-05-11 14:41:50 +00:00
{% load humanize %}
{% block comments_book %}
<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>
{% endblock %}
{% block comments_graphical %}
You've just pledged ${{ transaction.amount|floatformat:2|intcomma }} to <a href="{% url 'work' transaction.campaign.work_id %}">{{ transaction.campaign.work.title }}</a>.
{% endblock %}
{% block comments_textual %}
<p>Thank you, {{ transaction.user.username }}!</p>
<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>
<p>You can help even more by sharing this campaign with your friends!</p>
{% url 'work' transaction.campaign.work_id as work_url %}
{% include "notification/sharing_block.html" %}
<p>Thanks for being part of Unglue.it.</p>
<p>The unglue.it team.</p>
{% endblock %}