]> git.ipfire.org Git - ipfire.org.git/blob - templates/wishlist/donate.html
donation: Redesign the page
[ipfire.org.git] / templates / wishlist / donate.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ wish.title }} - {{ _("Donate") }}{% end block %}
4
5 {% block body %}
6 <div class="page-header">
7 <h2>{{ wish.title }}</h2>
8 </div>
9
10 {% if lang == "de" %}
11 <p>
12 Bevor du mit deiner Spende fortfährst, lies bitte die
13 <a href="/terms">{{ _("Terms & Conditions") }}</a>.
14 Solltest du mit diesen nicht einverstanden sein,
15 fahre nicht weiter fort.
16 </p>
17 <p>
18 Wähle dann deine präferierte Bezahlmethode aus, um deine Spende zu tätigen.
19 </p>
20 {% else %}
21 <p>
22 Before you make your donation, make sure that you
23 have read the <a href="/terms">{{ _("Terms & Conditions") }}</a>.
24 In case you don't agree to them, please stop right here.
25 </p>
26 <p>
27 To go on, please pick one of the methods below to make your donation.
28 </p>
29 {% end %}
30
31 <hr>
32
33 <div class="row">
34 <div class="col-lg-10 col-md-10 col-lg-offset-1">
35 {% module DonationBox(wish.tag) %}
36 </div>
37 </div>
38 {% end block %}