Parent: [3abb2e] (diff)

Child: [7af05e] (diff)

Download this file

threads_table.html    50 lines (46 with data), 2.3 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
<div xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="${g.allura_templates}/lib.html" />
<table id="forum-list" class="clear">
<thead>
<tr>
<th>&nbsp;</th>
<th class="topic">Topic</th>
<th>Replies</th>
<th>Views</th>
<th>Last Post</th>
</tr>
</thead>
<tbody class="forum-list">
<tr py:for="i,thread in enumerate(value)">
<td>
<input type="checkbox" name="threads-${i}.subscription"
py:if="thread.subscription" checked="checked"/>
<input type="checkbox" name="threads-${i}.subscription"
py:if="not thread.subscription"/>
<input type="hidden" name="threads-${i}._id" value="$thread._id"/>
</td>
<td class="topic" py:if="not thread.first_post">
<a href="${thread.url()}" class="btn ico"
py:if="'flags' in thread and 'Sticky' in thread.flags"><b class="ui-icon ui-icon-pin-s"></b> <span>Sticky</span></a>
<h3><a href="${thread.url()}">${thread.subject and h.text.truncate(thread.subject, 72) or '(no subject)'}</a></h3>
</td>
<td class="topic" py:if="thread.first_post" py:with="author=thread.first_post.author()">
<a href="${thread.url()}" class="btn ico"
py:if="'flags' in thread and 'Sticky' in thread.flags"><b class="ui-icon ui-icon-pin-s"></b> <span>Sticky</span></a>
<h3><a href="${thread.url()}">${thread.subject and h.text.truncate(thread.subject, 72) or '(no subject)'}</a></h3>
<span>By <a href="${author.url()}">$author.display_name</a></span> on ${thread.first_post.timestamp.strftime('%a %b %d, %Y %I:%M %p')}
</td>
<td>$thread.num_replies</td>
<td>$thread.num_views</td>
<td py:if="not thread.last_post">&nbsp;</td>
<td py:if="thread.last_post" py:with="author=thread.last_post.author()">
<p class="gravatar sm">
By ${gravatar(author, size=16)}<a href="${author.url()}">$author.display_name</a><br />on ${thread.last_post.timestamp.strftime('%a %b %d, %Y %I:%M %p')}
</p>
</td>
</tr>
</tbody>
</table>
</div>