]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - templates/modules/donation-box.html
donation: Redesign the page
[people/shoehn/ipfire.org.git] / templates / modules / donation-box.html
1 <div class="row">
2 <div class="col-lg-6 col-md-6">
3 <div class="well well-sm ac">
4 <h3>{{ _("Donate with PayPal") }}</h3>
5
6 <br>
7
8 {% if lang == "de" %}
9 <p>
10 Um mit PayPal zu spenden, einfach auf den Button klicken
11 und den gewünschten Betrag eingeben.
12 </p>
13 {% else %}
14 <p>
15 Simply click on the donate button and type in the
16 amount of money you would like to donate.
17 </p>
18 {% end %}
19
20 <br>
21
22 <div class="ac">
23 {% module DonationButton(reason_for_transfer=reason_for_transfer) %}
24
25 <br>
26
27 <ul class="list-inline">
28 {% for currency in ("USD", "GBP", "CHF", "AUD", "NZD", "CAD") %}
29 <li>
30 {% module DonationButton(reason_for_transfer=reason_for_transfer, currency=currency) %}
31 </li>
32 {% end %}
33 </ul>
34 </div>
35 </div>
36 </div>
37
38 <div class="col-lg-6 col-md-6">
39 <div class="well well-sm">
40 <h3 class="ac">{{ _("Donate by Bank Transfer") }}</h3>
41
42 <br>
43
44 {% if lang == "de" %}
45 <p class="ac">
46 Ebenso ist eine Spende auf unser Bankkonto möglich.
47 </p>
48 {% else %}
49 <p class="ac">
50 You can also send donations directly to our bank account.
51 </p>
52 {% end %}
53
54 <br>
55
56 <dl class="dl-horizontal">
57 <dt>{{ _("IBAN") }}</dt>
58 <dd>DE86 4265 0150 1020 0768 89</dd>
59
60 <dt>{{ _("BIC-/SWIFT-Code") }}</dt>
61 <dd>WELADED1REK</dd>
62
63 {% if reason_for_transfer %}
64 <dt>{{ _("Reason for transfer") }}</dt>
65 <dd>{{ reason_for_transfer }}</dd>
66 {% end %}
67 </dl>
68 </div>
69
70 <p class="ac">
71 {% if lang == "de" %}
72 <small>
73 Da das IPFire-Projekt keine registrierte gemeinnützige Organisation
74 ist, können keine steuerlich abzugsfähige Spendenquittungen erstellt
75 werden.
76 </small>
77 {% else %}
78 <small>
79 The IPFire project is not a registered non-profit organisation.
80 <br>
81 Hence we are not able to issue a tax-deductible contribution receipt
82 for your donation.
83 </small>
84 {% end %}
85 </p>
86 </div>
87 </div>