1 {% extends "base.html" %}
 
   5 {% block titleextra %}{% trans "Thank you for your support!" %}{% endblock %}
 
   9 <h1>{% trans "Thank you!" %}</h1>
 
  10 <div class="white-box normal-text">
 
  12 {% trans "Thank you for your support!" %}
 
  15     <p>{% trans "Full amount was successfully raised!" %}</p>
 
  17     <p>{% blocktrans with due=offer.due end=offer.end %}The fundraiser
 
  18             ends on {{ end }}. The book will be published by {{ due }}.{% endblocktrans %}</p>
 
  20     <p>{% blocktrans with b=object.title due=offer.due end=offer.end %}Your
 
  21     donation will be spent on publishing
 
  22     the book {{ b }} if the full amount is raised by {{ end }}.
 
  23     The book will then be published by {{ due }}.{% endblocktrans %}</p>
 
  26 <p>{% include "funding/snippets/any_remaining.html" %}</p>
 
  28 {% url 'funding_current' as current %}
 
  29 <p><a href="{{ current }}">{% trans "Go back to the current fundraiser." %}</a></p>
 
  32 <p>{% trans "Tell your friends!" %}</p>
 
  34 <p>{% share current _("I support Wolne Lektury.") %}</p>