+ <div class="l-checkout__cols" style="margin-top: 0">
+ <div class="l-checkout__col" >
+ <div class="l-checkout__payments__box is-active">
+ {% if object.cover %}
+ {% thumbnail object.cover '320x1000' as th %}
+ <img src="{{ th.url }}">
+ {% endthumbnail %}
+ {% endif %}
+ </div>
+ </div>
+ <div class="l-checkout__col funding-details">
+ <h2>{% trans "Help free the book!" %}</h2>
+ <div class="funding-description">
+ {{ object.description|safe }}
+ </div>
+ {% if object.is_current %}
+ <form method="post" style="margin: auto;">
+ {{ form.as_p }}
+ <span class="helptext">
+ {{ form.data_processing }}
+ </span>
+ <button type="submit" class="button-orange">Wesprzyj!</button>
+ </form>
+ {% else %}
+ {{ object.status }}
+ {{ object.status_more }}
+ {% endif %}
+ </div>