]> git.ipfire.org Git - ipfire.org.git/blob - templates/news-author.html
Remove obsolete pakfire CGI scripts.
[ipfire.org.git] / templates / news-author.html
1 {% extends "planet-user.html" %}
2
3 {% block title %}{{ author.cn }}{% end block %}
4
5 {% block bodyA %}
6 <div class="page-header">
7 <h1>{{ _("%s's announcements") % author.cn }}</h1>
8 </div>
9
10 <div class="row">
11 <div class="span9">
12 {% if lang == "de" %}
13 XXX GERMAN TEXT MISSING
14 {% else %}
15 <p>
16 This is a list of all announcements made by {{ author.cn }}
17 in reverse chronological order.
18 </p>
19 {% end %}
20
21 <table class="table table-striped table-bordered">
22 <tbody>
23 {% for news in latest_news %}
24 <tr>
25 <td>
26 <a href="/news/{{ news.slug }}">{{ news.title }}</a>
27 </td>
28 <td>
29 {{ locale.format_date(news.date, full_format=True) }}
30 </td>
31 </tr>
32 {% end %}
33 </tbody>
34 </table>
35 </div>
36 </div>
37 {% end block %}