]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/wishlist/index.html
Fixes various typos and improves readability
[people/shoehn/ipfire.org.git] / templates / wishlist / index.html
CommitLineData
2b0d3052 1{% extends "base.html" %}
7771acea
MT
2
3{% block title %}{{ _("Home") }}{% end block %}
4
5{% block body %}
60b0917c
MT
6 <section class="content-section text-center">
7 <div class="page-header">
8 <h1>{{ _("The IPFire Crowd Funding Platform") }}</h1>
9 </div>
7771acea 10
60b0917c
MT
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>
7771acea
MT
39
40 {% if wishes %}
6b6308b0 41 {% module Wishlist(wishes) %}
7771acea 42 {% else %}
1bf8d482 43 <div class="alert alert-error ac">
7771acea 44 {% if lang == "de" %}
1bf8d482 45 <strong>Es tut uns Leid!</strong><br>
7771acea 46 Derzeit finden keine Finanzierungen statt.
11bca398 47 Wenn du das Projekt unterstützen möchtest, so
7771acea
MT
48 tätige eine <a href="http://www.ipfire.org/donation">Spende</a>.
49 {% else %}
1bf8d482 50 <strong>We are sorry!</strong><br>
7771acea
MT
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
1bf8d482 60 <div class="row">
60b0917c 61 <div class="col-md-6 ac">
1bf8d482
MT
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>
c939421f 66 <i class="glyphicon glyphicon-envelope"></i> <a href="mailto:wishlist@ipfire.org">wishlist@ipfire.org</a>
1bf8d482
MT
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>
c939421f 70 <i class="glyphicon glyphicon-envelope"></i> <a href="mailto:wishlist@ipfire.org">wishlist@ipfire.org</a>
1bf8d482
MT
71 {% end %}
72 </div>
918284e8 73
60b0917c 74 <div class="col-md-6 ac">
1bf8d482 75 {% if lang == "de" %}
60b0917c 76 Bereits fertiggestellte Sammlungen finden sich
1bf8d482
MT
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>
7771acea 84{% end block %}