Child: [7af05e] (diff)

Download this file

thread_header.html    18 lines (18 with data), 810 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
<div xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
py:strip="True">
<div py:if="limit"
py:with="cur_page=page / limit; num_pages=count/limit">
<div class="span-3">Page ${1 + cur_page} of ${1 + num_pages}</div>
<div class="span-16 tright last" id="discuss">
<a py:if="num_pages and cur_page > 0" href="?page=${page - limit}">&larr; Prev</a>
<a py:if="num_pages and cur_page &lt; num_pages" href="?page=${page + limit}">Next &rarr;</a>
</div>
</div>
<div class="title-pane closed" py:if="show_moderate and has_artifact_access('moderate', value)()">
<span class="title">Moderate thread</span>
<div class="content">
${widgets.moderate_thread.display(value=value, action=value.url()+'moderate')}
</div>
</div>
</div>