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

27 lines
1014 B
HTML

{% extends 'notification/notice_template.html' %}
{% block comments_book %}
<a href="{% url 'work' campaign.work.id %}"><img src="{{ campaign.work.cover_image_small }}" alt="cover image for {{ campaign.work.title }}" /></a>
{% endblock %}
{% block comments_graphical %}
The campaign to unglue {{ campaign.work.title }} is almost over.
{% endblock %}
{% block comments_textual %}
The campaign for {{ campaign.work.title }} will end on {{ campaign.deadline }}. It needs ${{ campaign.left }} more before it can be unglued for all to enjoy.<br /><br />
{% if pledged %}
Your pledge is helping us reach that goal. Will you help again by sharing this campaign with your friends?
{% else %}
If you've been meaning to pledge, <a href="{% url 'pledge' work_id=campaign.work.id %}">now's your chance</a>. You can also help by sharing this campaign with your friends.
{% endif %}
{% url 'work' campaign.work.id as work_url %}
{% include "notification/sharing_block.html" %}
Thank you!
{% endblock %}