]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/modules/donation-box.html
Massive web site update
[people/shoehn/ipfire.org.git] / templates / modules / donation-box.html
CommitLineData
e00c06b9
MT
1<div class="row">
2 <div class="col-lg-6 col-md-6">
60b0917c 3 <h4 class="text-center">{{ _("Donate with PayPal") }}</h4>
e00c06b9 4
60b0917c
MT
5 <div class="ac">
6 {% module DonationButton(reason_for_transfer=reason_for_transfer) %}
7771acea 7
e00c06b9 8 <br>
d75ad3a4 9
60b0917c
MT
10 <ul class="list-inline">
11 {% for currency in ("USD", "GBP", "CHF", "AUD", "NZD", "CAD") %}
12 <li>
13 {% module DonationButton(reason_for_transfer=reason_for_transfer, currency=currency) %}
14 </li>
15 {% end %}
16 </ul>
7771acea 17 </div>
e00c06b9
MT
18 </div>
19
20 <div class="col-lg-6 col-md-6">
60b0917c 21 <h4 class="text-center">{{ _("Donate by Bank Transfer") }}</h4>
7771acea 22
60b0917c
MT
23 <dl class="dl-horizontal">
24 <dt>{{ _("IBAN") }}</dt>
25 <dd>DE86 4265 0150 1020 0768 89</dd>
d75ad3a4 26
60b0917c
MT
27 <dt>{{ _("BIC-/SWIFT-Code") }}</dt>
28 <dd>WELADED1REK</dd>
e00c06b9 29
60b0917c
MT
30 {% if reason_for_transfer %}
31 <dt>{{ _("Reason for transfer") }}</dt>
32 <dd>{{ reason_for_transfer }}</dd>
33 {% end %}
34 </dl>
e64ce07e 35
e00c06b9
MT
36 <p class="ac">
37 {% if lang == "de" %}
38 <small>
39 Da das IPFire-Projekt keine registrierte gemeinnützige Organisation
40 ist, können keine steuerlich abzugsfähige Spendenquittungen erstellt
41 werden.
42 </small>
43 {% else %}
44 <small>
45 The IPFire project is not a registered non-profit organisation.
46 <br>
47 Hence we are not able to issue a tax-deductible contribution receipt
48 for your donation.
49 </small>
50 {% end %}
51 </p>
52 </div>
7771acea 53</div>