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

27 lines
1.2 KiB
HTML
Raw Normal View History

{% extends "notification/notice_template.html" %}
{% 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 %}
{% block comments_book %}
<a href="{{ work_url }}?tab=2"><img src="{{ transaction.campaign.work.cover_image_thumbnail }}" alt="cover image for {{ title }}" /></a>
{% endblock %}
{% block comments_graphical %}
You've just pledged ${{ amount|intcomma }} to <a href="{{ work_url }}">{{ title }}</a>.
{% endblock %}
{% block comments_textual %}
<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>
{% endblock %}
2012-05-30 00:50:53 +00:00
{% endwith %}{% endwith %}{% endwith %}