]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - templates/donate.html
a729ade9b63a05f39035edfd057e008a54982bb8
[people/shoehn/ipfire.org.git] / templates / donate.html
1 {% extends "base-1.html" %}
2
3 {% block title %}{{ _("Donate") }}{% end block %}
4
5 {% block container %}
6 <section class="container content-section text-center">
7 <div class="page-header">
8 <h1>{{ _("Donate now") }}</h1>
9 </div>
10
11 {% if lang == "de" %}
12 <p class="lead">
13 IPFire ist ein Open-Source-Softwareprojekt.
14 </p>
15
16 <p class="lead">
17 Die Entwicklung und die Fortführung des Projekts wird allein
18 von einer Gruppe von Freiwilligen getragen, die ein Produkt
19 entwickelt hat, das tagtäglich von Hunderttausenden genutzt
20 wird.
21 </p>
22
23 <p class="lead">
24 Jede einzelne Spende hilft IPFire noch weiter zu verbessern...
25 </p>
26 {% else %}
27 <p class="lead">
28 IPFire is an Open Source software project.
29 </p>
30
31 <p class="lead">
32 Development and keeping the project healthy is carried out by a
33 group of volunteers who have built a very successful product,
34 which hundreds of thousands of people use every day.
35 </p>
36
37 <p class="lead">
38 Your donation helps us to make IPFire even better...
39 </p>
40 {% end %}
41 </section>
42
43 <section class="container content-section text-center">
44 {% module DonationInputBox() %}
45 </section>
46
47 {% if wishlist_items %}
48 <section class="container content-section">
49 <div class="row">
50 <div class="col-md-8 col-md-offset-2">
51 <div class="panel panel-default">
52 <div class="panel-heading">
53 <h3 class="panel-title text-center">
54 {{ _("Current crowd funding projects on the IPFire Wishlist") }}
55 </h3>
56 </div>
57 <div class="panel-body">
58 {% module WishlistItems(wishlist_items) %}
59 </div>
60 </div>
61 </div>
62 </div>
63 </section>
64 {% end %}
65
66 <section id="recurring-donations" class="lighter-background text-center">
67 <div class="container">
68 <div class="row">
69 <div class="col-md-6">
70 <h4>{{ _("Donate by Bank Transfer") }}</h4>
71
72 <dl class="dl-horizontal">
73 <dt>{{ _("IBAN") }}</dt>
74 <dd>DE86 4265 0150 1020 0768 89</dd>
75
76 <dt>{{ _("BIC-/SWIFT-Code") }}</dt>
77 <dd>WELADED1REK</dd>
78
79 {% if reason_for_transfer %}
80 <dt>{{ _("Reason for transfer") }}</dt>
81 <dd>{{ reason_for_transfer }}</dd>
82 {% end %}
83 </dl>
84
85 {% if lang == "de" %}
86 <small>
87 Da das IPFire-Projekt keine registrierte gemeinnützige Organisation
88 ist, können keine steuerlich abzugsfähige Spendenquittungen erstellt
89 werden.
90 </small>
91 {% else %}
92 <small>
93 The IPFire project is not a registered non-profit organisation.
94 <br>
95 Hence we are not able to issue a tax-deductible contribution receipt
96 for your donation.
97 </small>
98 {% end %}
99 </div>
100
101 <div class="col-md-6">
102 <h4>{{ _("Recurring Donations") }}</h4>
103
104 {% if lang == "de" %}
105 <p>
106 Monatliche Spenden helfen das Projekt auf eine solide Basis zu stellen
107 und ermöglichen es uns die weitere Entwicklung besser voranzutreiben.
108 Unabhängig ob die zügige Sicherheitsupdates oder das Einbauen von neuen
109 Funktionen ist, monatliche Spenden sind die Basis um den Fortbestand des
110 Projekts langfristig zu gewährleisten.
111 </p>
112
113 <p>
114 PayPal erlaubt in einigen Ländern eine monatliche Spende, oder du
115 erstellst einfach einen Dauerauftrag bei deiner Bank.
116 </p>
117 {% else %}
118 <p>
119 A great way to support the IPFire project is a recurring donation.
120 These will help to keep the project solidly funded and help us to
121 keep up our development efforts. Either if that is the prompt
122 security updates or introducing new features, recurring donations
123 are the foundation that keeps this project running.
124 </p>
125
126 <p>
127 PayPal allows to set up recurring donations in some countries
128 or you can set up a standing order at your bank if you are
129 want to donate by using bank transfer.
130 </p>
131 {% end %}
132 </div>
133 </div>
134 </div>
135 </section>
136 {% end block %}