96a65d670239cdffd10c8df3afde2477a25e614b
[wolnelektury.git] / src / funding / templates / funding / offer_detail.html
1 {% extends "base/base.html" %}
2 {% load i18n static %}
3 {% load pagination_tags %}
4 {% load fnp_share %}
5 {% load thumbnail %}
6 {% load build_absolute_uri from fnp_common %}
7 {% load ssi_include from ssify %}
8
9
10 {% block titleextra %}{{ object }}{% endblock %}
11
12 {% block ogimage %}{{ object.cover.url|build_absolute_uri:request }}{% endblock %}
13
14 {% block metadescription %}Wesprzyj kolejną publikację Wolnych Lektur!{% endblock %}
15
16
17 {% block body %}
18   <h1>{{ object }}</h1>
19
20   {% ssi_include 'funding_detail_bar' pk=object.pk %}
21   <div class="white-box">
22     <div class="funding-details-intro">
23       {% if object.cover %}
24         <img src="{% thumbnail object.cover "139x193" as thumb %}{{ thumb.url }}{% empty %}{{ object.cover.url }}{% endthumbnail %}"
25              alt="Cover" class="funding-cover" />
26       {% endif %}
27       <div class="normal-text">
28         <h3>{% trans "Help free the book!" %}</h3>
29         {{ object.description|safe }}
30         {% ssi_include 'funding_status' pk=object.pk %}
31         <a href='//nowoczesnapolska.org.pl/pomoz-nam/wesprzyj-nas/' target="_blank" style='float:right;border:1px solid #ddd;padding: 1em;margin:0 0 1em 1em;background:#eee;'><img src='//nowoczesnapolska.org.pl/wp-content/themes/koed/annoy/procent.png' alt='1%' style='float:left;margin-right: 1em;margin-top:.2em;'>Możesz też przekazać<br/>1% podatku na rozwój biblioteki. &rarr;</a>
32         {% ssi_include 'funding_status_more' pk=object.pk %}
33         <p><a href="{% url 'infopage' 'wesprzyj' %}">{% trans "Learn more" %}</a>.</p>
34       </div>
35
36       <div style="clear:both;"></div>
37     </div>
38
39     {% if object.is_current %}
40       <div class="normal-text">
41         <h3>{% trans "Support the publication" %}</h3>
42         <form action="" method="post">
43           <table>
44             {# FIXME after upgrade to django 1.9 use field_order #}
45             {% for field in form %}
46               {% if field.name != 'agree_newsletter' %}
47                 <tr>
48                   <th>{{ field.label }}</th>
49                   <td>
50                     {{ field.errors }}{{ field }}
51                     {% if field.help_text %}<br /><span class="helptext">{{ field.help_text }}</span>
52                     {% endif %}
53                   </td>
54                 </tr>
55               {% endif %}
56             {% endfor %}
57             <tr>
58               <td></td>
59               <td>
60                 <label>{{ form.agree_newsletter }} {{ form.agree_newsletter.label }}</label>
61                 <br/><span class="helptext">{{ form.data_processing }}</span>
62               </td>
63             </tr>
64             <tr>
65               <td></td>
66               <td>
67                 <button type="submit" style="border: none; background: none; cursor: pointer">
68                   <img alt="{% trans 'Donate!' %}" src="{% static 'img/payu.png' %}" />
69                 </button>
70               </td>
71             </tr>
72           </table>
73         </form>
74       </div>
75
76       {% url 'funding_current' object.slug as current %}
77       <p class="normal-text">{% trans "Tell your friends!" %}</p>
78       <p class="share">{% share current _("Support Wolne Lektury!") "big" %}</p>
79     {% endif %}
80
81     <p class="normal-text"><a href="{% url 'funding' %}">{% trans "See all fundraisers." %}</a></p>
82   </div>
83
84   <h2>{% trans "Supporters" %}:</h2>
85
86   <div class="white-box normal-text">
87     {% ssi_include 'funding_fundings' pk=object.pk page=page %}
88   </div>
89 {% endblock %}