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