22 lines
1.2 KiB
HTML
22 lines
1.2 KiB
HTML
{% extends "notification/notice_template.html" %}
|
|
{% 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|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|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 %} |