1 {% extends "base.html" %}
 
   2 {% load url from future %}
 
   4 {% load funding_tags %}
 
   7 {% block titleextra %}{{ object }}{% endblock %}
 
  13 <div class="white-box">
 
  16     {% offer_detail_head object %}
 
  18     {% if object.state == 'running' %}
 
  20         <div class="normal-text">
 
  22             <h3>{% trans "Support" %}</h3>
 
  23             <form action="" method="post">
 
  27                 <tr><td></td><td><button class="honking" type="submit">Wpłać!</button></td></tr>
 
  34     <div class="normal-text">{{ object.description|safe }}</div>
 
  36     <p class="normal-text"><a href="{% url 'funding' %}">Zobacz wszystkie zbiórki.</a></p>
 
  41 <h2>{% trans "Supporters" %}:</h2>
 
  43 <div class="white-box normal-text">
 
  45     <table class="wlfund">
 
  46     {% for funding in object.funding_payed.all %}
 
  47         <tr class="funding-plus">
 
  48             <td><div>{{ funding.payed_at.date }}</div></td>
 
  53                     <em>{% trans "Anonymous" %}</em>
 
  56             <td><div>+{{ funding.amount }} zł</div></td>
 
  58                 {% for perk in funding.perks.all %}
 
  59                     {{ perk.name }}{% if not forloop.last %},{% endif %}