]> git.ipfire.org Git - ipfire.org.git/blob - templates/wishlist/index.html
Show SSL protocol (and possibly cipher) in page footer
[ipfire.org.git] / templates / wishlist / index.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("Home") }}{% end block %}
4
5 {% block body %}
6 {% if lang == "de" %}
7 <p>
8 Dies ist die IPFire Crowdfunding-Platform, auf welcher du mittels
9 Spenden deinem bevorzugten Feature mehr Gewicht verleihen kannst.
10 </p>
11 <p>
12 Es ist ganz einfach. Wähle einen Wunsch, über den du dich freuen
13 würdest, wenn er in Zukunft umgesetzt wird.
14 Klicke auf den Spenden-Knopf und spende deinen gewünschten Betrag. Teile
15 auch deinen Freunden und Kollegen mit, wie sie ihre Wünsche unterstützen
16 können.
17 </p>
18 {% else %}
19 <p>
20 The wishlist is the IPFire crowd funding platform where you can
21 donate to accelerate the development of your favorite features.
22 </p>
23 <p>
24 It's easy! Just pick the wish you would to see implemented
25 in the future. Hit the donate button and donate the amount of
26 money this feature is worth for you.
27 After that tell your friends and collegues about it and
28 encourage them to promote your favourite wish as well.
29 </p>
30 {% end %}
31
32 <hr>
33
34 {% if wishes %}
35 {% module Wishlist(wishes) %}
36 {% else %}
37 <div class="alert alert-error ac">
38 {% if lang == "de" %}
39 <strong>Es tut uns Leid!</strong><br>
40 Derzeit finden keine Finanzierungen statt.
41 Wenn du das Projekt unterstützten möchtest, so
42 tätige eine <a href="http://www.ipfire.org/donation">Spende</a>.
43 {% else %}
44 <strong>We are sorry!</strong><br>
45 There are currently no running fundings.
46 If you want to contribute to the project, please
47 make a <a href="http://www.ipfire.org/donation">donation</a>.
48 {% end %}
49 </div>
50 {% end %}
51
52 <hr>
53
54 <div class="row">
55 <div class="col-lg-4 col-md-4 ac">
56 {% if lang == "de" %}
57 Wenn du dich nicht entscheiden kannst für was
58 deine Spende verwendet werden soll, klicke
59 <a href="http://www.ipfire.org/donate">hier</a>.
60 {% else %}
61 In case you cannot decide for which feature
62 your donation should be used, click
63 <a href="http://www.ipfire.org/donate">here</a>.
64 {% end %}
65 </div>
66
67 <div class="col-lg-4 col-md-4 ac">
68 {% if lang == "de" %}
69 Du hast eine Idee, oder glaubst ein wichtiges Feature fehlt
70 und wäre ideal von der Community finanziert?
71 Sende eine E-Mail an:<br>
72 <i class="glyphicon glyphicon-envelope"></i> <a href="mailto:wishlist@ipfire.org">wishlist@ipfire.org</a>
73 {% else %}
74 Do you think we are missing a great feature that could be
75 funded by the community? Write us an email about it to:<br>
76 <i class="glyphicon glyphicon-envelope"></i> <a href="mailto:wishlist@ipfire.org">wishlist@ipfire.org</a>
77 {% end %}
78 </div>
79
80 <div class="col-lg-4 col-md-4 ac">
81 {% if lang == "de" %}
82 Bereits abgelaufene Sammlungen finden sich
83 <a href="/closed">hier</a>.
84 {% else %}
85 Already closed fundings are to be found over
86 <a href="/closed">here</a>.
87 {% end %}
88 </div>
89 </div>
90 {% end block %}