]> git.ipfire.org Git - ipfire.org.git/blob - templates/admin-planet.html
Remove obsolete pakfire CGI scripts.
[ipfire.org.git] / templates / admin-planet.html
1 {% extends "admin-base.html" %}
2
3 {% block bodyA %}
4 <div id="post">
5 <h3>{{ _("Planet Administrator") }}</h3>
6
7 <p>
8 <a href="/planet/compose">{{ _("Compose new entry") }}</a>
9 </p>
10
11 <table>
12 <tr>
13 <th>{{ _("Author") }}</th>
14 <th>{{ _("Title") }}</th>
15 <th>&nbsp;</th>
16 </tr>
17 {% for entry in entries %}
18 <tr>
19 <td>{{ entry.author.cn }}</td>
20 <td><a href="http://planet.ipfire.org/post/{{ entry.slug }}" target="_blank">{{ entry.title }}</a></td>
21 <td><a href="/planet/edit/{{ entry.id }}">{{ _("Edit") }}</a></td>
22 </tr>
23 {% end %}
24 </table>
25 </div>
26 {% end %}