]> git.ipfire.org Git - ipfire.org.git/blame - templates/admin-planet.html
Move everything to the root of the repository.
[ipfire.org.git] / templates / admin-planet.html
CommitLineData
feb02477
MT
1{% extends "admin-base.html" %}
2
60024cc8 3{% block bodyA %}
feb02477
MT
4 <div id="post">
5 <h3>{{ _("Planet Administrator") }}</h3>
60024cc8 6
feb02477
MT
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>
940227cb 19 <td>{{ entry.author.cn }}</td>
feb02477
MT
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 %}