]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/wishlist/wish.html
netboot: Allow booting multiple architectures
[people/shoehn/ipfire.org.git] / templates / wishlist / wish.html
CommitLineData
26e2ec37 1{% extends "base.html" %}
7771acea 2
26e2ec37 3{% block title %}{{ wish.title }} - {{ _("Wish") }}{% end block %}
7771acea 4
26e2ec37 5{% block body %}
6 <div class="page-header">
7 <h1>{{ wish.title }}</h1>
8 </div>
7771acea 9
26e2ec37 10 {% module Wishlist([wish,], short=True) %}
7771acea 11
26e2ec37 12 {% raw wish.description %}
918284e8 13
26e2ec37 14 <hr>
918284e8 15
26e2ec37 16 <p class="ac">
17 <i class="glyphicon glyphicon-calendar"></i>
18 {{ _("Launched: %s") % locale.format_date(wish.date_start, full_format=True) }}
918284e8 19
26e2ec37 20 &bull;
918284e8 21
26e2ec37 22 {% if wish.date_end %}
23 <i class="glyphicon glyphicon-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 %}