]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/donate.html
netboot: Allow booting multiple architectures
[people/shoehn/ipfire.org.git] / templates / donate.html
CommitLineData
e64ce07e 1{% extends "base-1.html" %}
d964a8fa 2
9b5ac075 3{% block title %}{{ _("Donate") }}{% end block %}
60b0917c
MT
4
5{% block container %}
6 <section class="container content-section text-center">
7 <div class="page-header">
8 <h1>{{ _("Donate now") }}</h1>
9 </div>
9b5ac075 10
60b0917c 11 {% if lang == "de" %}
9b5ac075 12 <p class="lead">
60b0917c 13 IPFire ist ein Open-Source-Softwareprojekt.
8629ec0f
MT
14 </p>
15
16 <p class="lead">
60b0917c
MT
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.
9b5ac075 21 </p>
8629ec0f
MT
22
23 <p class="lead">
24 Jede einzelne Spende hilft IPFire noch weiter zu verbessern...
25 </p>
60b0917c
MT
26 {% else %}
27 <p class="lead">
28 IPFire is an Open Source software project.
8629ec0f 29 </p>
e00c06b9 30
8629ec0f 31 <p class="lead">
60b0917c
MT
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>
8629ec0f
MT
36
37 <p class="lead">
38 Your donation helps us to make IPFire even better...
39 </p>
60b0917c
MT
40 {% end %}
41 </section>
e00c06b9 42
60b0917c
MT
43 <section class="container content-section text-center">
44 {% module DonationInputBox() %}
45 </section>
e00c06b9 46
60b0917c
MT
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 %}
e00c06b9 65
60b0917c
MT
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>
e00c06b9 71
60b0917c
MT
72 <dl class="dl-horizontal">
73 <dt>{{ _("IBAN") }}</dt>
74 <dd>DE86 4265 0150 1020 0768 89</dd>
e00c06b9 75
60b0917c
MT
76 <dt>{{ _("BIC-/SWIFT-Code") }}</dt>
77 <dd>WELADED1REK</dd>
e00c06b9 78
60b0917c
MT
79 {% if reason_for_transfer %}
80 <dt>{{ _("Reason for transfer") }}</dt>
81 <dd>{{ reason_for_transfer }}</dd>
82 {% end %}
83 </dl>
e00c06b9 84
60b0917c
MT
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>
e00c06b9 100
60b0917c
MT
101 <div class="col-md-6">
102 <h4>{{ _("Recurring Donations") }}</h4>
e00c06b9 103
60b0917c
MT
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>
e00c06b9 112
60b0917c
MT
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>
e00c06b9 125
60b0917c
MT
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>
e00c06b9 133 </div>
7771acea 134 </div>
60b0917c 135 </section>
f5b55ea7 136{% end block %}