Parent: [c8923f] (diff)

Child: [e511b8] (diff)

Download this file

moderate.html    22 lines (18 with data), 624 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends g.theme.master %}
{% block title %}
{{c.project.name}} / {{c.app.config.options.mount_label}} / Moderation Queue
{% endblock %}
{% block header %}
Moderation Queue
{% endblock %}
{% block content %}
<div class="grid-19">
<div>
Displaying page {{pgnum}} / {{pages}}
</div>
<a href="?status=$status&amp;flag=$flag&amp;page={{page-limit}}">Previous Page</a>
<a href="?status=$status&amp;flag=$flag&amp;page={{page+limit}}">Next Page</a>
</div>
{{c.post_filter.display(action='.', value=dict(status=status, flag=flag))}}
{{c.moderate_posts.display(value=dict(posts=posts), action='.')}}
{% endblock %}