1 {% extends "base.html" %}
 
   2 {% load url from future %}
 
   4 {% load funding_tags %}
 
   5 {% load pagination_tags %}
 
   8 {% block titleextra %}{{ object }}{% endblock %}
 
  15 <div class="normal-text">{{ object.description|safe }}</div>
 
  18 <div class="white-box">
 
  19     {% offer_status object %}
 
  20     {% offer_status_more object %}
 
  22     {% if object.is_current %}
 
  23         <div class="normal-text">
 
  24             <h3>{% trans "Support the publication" %}</h3>
 
  25             <form action="" method="post">
 
  29                 <tr><td></td><td><button class="honking" type="submit">{% trans "Donate!" %}</button></td></tr>
 
  35     <p class="normal-text"><a href="{% url 'funding' %}">{% trans "See all fundraisers." %}</a></p>
 
  40 <h2>{% trans "Supporters" %}:</h2>
 
  42 <div class="white-box normal-text">
 
  43 {% with object.funding_payed.all as fundings %}
 
  45     <table class="wlfund">
 
  46     {% autopaginate fundings 10 %}
 
  47     {% for funding in fundings %}
 
  48         <tr class="funding-plus">
 
  49             <td><div>{{ funding.payed_at.date }}</div></td>
 
  54                     <em>{% trans "Anonymous" %}</em>
 
  57             <td><div>{{ funding.amount }} zł</div></td>
 
  59                 {% for perk in funding.perks.all %}
 
  60                     {{ perk.name }}{% if not forloop.last %},{% endif %}