]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/modules/donation-box.html
.gitignore: Add .vscode
[ipfire.org.git] / src / templates / modules / donation-box.html
1 <div class="row">
2 <div class="col-lg-6 col-md-6">
3 <h4 class="text-center">{{ _("Donate with PayPal") }}</h4>
4
5 <div class="ac">
6 {% module DonationButton(reason_for_transfer=reason_for_transfer) %}
7
8 <br>
9
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>
17 </div>
18 </div>
19
20 <div class="col-lg-6 col-md-6">
21 <h4 class="text-center">{{ _("Donate by Bank Transfer") }}</h4>
22
23 <dl class="dl-horizontal">
24 <dt>{{ _("IBAN") }}</dt>
25 <dd>DE76 3605 0105 1010 8206 84</dd>
26
27 <dt>{{ _("BIC-/SWIFT-Code") }}</dt>
28 <dd>SPESDE3EXXX</dd>
29
30 {% if reason_for_transfer %}
31 <dt>{{ _("Reason for transfer") }}</dt>
32 <dd>{{ reason_for_transfer }}</dd>
33 {% end %}
34 </dl>
35
36 <p class="ac">
37 <small>
38 The IPFire project is not a registered non-profit organisation.
39 <br>
40 Hence we are not able to issue a tax-deductible contribution receipt
41 for your donation.
42 </small>
43 </p>
44 </div>
45 </div>