]> git.ipfire.org Git - ipfire.org.git/blob - templates/wishlist/wish.html
Major update of the webapp.
[ipfire.org.git] / templates / wishlist / wish.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ wish.title }} - {{ _("Wish") }}{% end block %}
4
5 {% block body %}
6 <div class="page-header">
7 <h1>{{ wish.title }}</h1>
8 </div>
9
10 {% module Wishlist([wish,], short=True) %}
11
12 {% raw wish.description %}
13
14 <hr>
15
16 <p class="ac">
17 <i class="icon-calendar"></i>
18 {{ _("Launched: %s") % locale.format_date(wish.date_start, full_format=True) }}
19
20 &bull;
21
22 {% if wish.date_end %}
23 <i class="icon-time"></i>
24 {{ _("Funding ends: %s") % locale.format_date(wish.date_end, full_format=True) }}
25 {% else %}
26 {{ _("This funding runs until the goal is reached.") }}
27 {% end %}
28 </p>
29 {% end block %}