Child: [7af05e] (diff)

Download this file

moderate_posts.html    48 lines (47 with data), 1.4 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
<form xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
xmlns:xi="http://www.w3.org/2001/XInclude"
name="$name"
id="$name"
method="$method"
action="$action"
enctype="$enctype"
py:attrs="attrs">
<fieldset>
<legend>Update marked posts</legend>
<input type="submit" name="approve" value="Approve Marked"/>
<input type="submit" name="spam" value="Spam Marked"/>
<input type="submit" name="delete" value="Delete Marked"/>
</fieldset>
<table>
<thead>
<tr>
<th><a href="#">[x]</a></th>
<th>Timestamp</th>
<th>Status</th>
<th>Flags?</th>
<th>Author</th>
<th>Subject</th>
<th>Text</th>
<th>Attachments</th>
</tr>
</thead>
<tbody>
<py:for each="i, post in enumerate(value.posts)">
<tr>
<td>
<input type="hidden" name="post-${i}.slug" value="$post.slug"/>
<input type="checkbox" name="post-${i}.checked"/>
</td>
<td>$post.timestamp</td>
<td>$post.status</td>
<td>$post.flags</td>
<td py:with="author=post.author()">$author.display_name ($author.username)</td>
<td>${post.thread.subject or '(no subject)'}</td>
<td>${h.text.truncate(post.text)}</td>
<td>${len(post.attachments)}</td>
</tr>
</py:for>
</tbody>
</table>
</form>