-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathadmin.html
More file actions
51 lines (41 loc) · 1.37 KB
/
Copy pathadmin.html
File metadata and controls
51 lines (41 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{% extends "base.html" %}
{% block main %}
<div id="content" class="wideforum">
<div class="nav"><a href="{{root}}/admin">Administrative Panel</a></div>
{% include "admin_side.html"%}
<div id="main">
<h3>Latest registered users</h3>
<table class="list">
{% if users %}
{% for item in users %}
<tr><td class="time">{{item.created|minitime}}</td><td class="desc">{{item.username}}</td><td class="rest">{{item.nickname}}</td></tr>
{% endfor %}
{% else %}
<tr><td colspan="3">No users registered yet</td></tr>
{% endif %}
</table>
<hr class="sep">
<h3>Latest topics</h3>
<table class="list">
{% if topics %}
{% for item in topics %}
<tr><td class="time">{{item.created|minitime}}</td><td class="desc">{{item.title}}</td><td class="rest">{{item.lastuser}}</td></tr>
{% endfor %}
{% else %}
<tr><td colspan="3">No topics posted yet</td></tr>
{% endif %}
</table>
<hr class="sep">
<h3>Latest messages</h3>
<table class="list">
{% if messages %}
{% for item in messages %}
<tr><td class="time">{{item.created|minitime}}</td><td class="desc">{{item.content|ellipsis}}</td><td class="rest">{{item.author}}</td></tr>
{% endfor %}
{% else %}
<tr><td colspan="3">No messages posted yet</td></tr>
{% endif %}
</table>
</div>
</div>
{% endblock %}