<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html 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.pyforge_templates}/master.html"/>
<xi:include href="${c.app.templates}/lib.html" />
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
<title>ForgeForum Index Page</title>
<py:def function="display_post_thread(post_threads)">
<div py:for="pi in post_threads">
<a href="#post-${pi.post.slug}">$pi.post.subject</a>
by <a href="${pi.post.author().url()}">${pi.post.author().display_name}</a>
${h.ago(pi.post.timestamp)}
<br/>
<div py:if="pi.children"
style="border-left:1px solid black; margin-left: 5px; padding-left: 5px">
${display_post_thread(pi.children)}
</div>
</div>
</py:def>
<?python
from pyforge.lib.security import has_artifact_access
?>
</head>
<body>
<div class="breadcrumbs" >
<ul>${crumbs(forum.breadcrumbs())}</ul>
</div>
<h1>$thread.subject</h1>
<p>Thread Shortlink: <input readonly="true" value="[${thread.shorthand_id()}]"/></p>
${page_nav(offset, total, pagesize)}
<div class="title-pane closed" py:if="has_artifact_access('moderate', thread)">
<span class="title">Moderate thread</span>
<div class="content">
<form method="POST" action="moderate">
${select_field('forum', 'New Forum', [ (f.name, f.shortname) for f in c.app.forums])}
${submit_button('Move thread to new forum')}
${submit_button('Delete thread', 'delete')}
</form>
</div>
</div>
<div py:if="style=='threaded'">
<div style="width:220px; float:left">
${display_post_thread(post_threads)}
</div>
<div style="margin-left: 225px">
<py:for each="post in posts">
${display_post(post)}
</py:for>
</div>
</div>
<div py:if="style!='threaded'">
<py:for each="post in posts">
${display_post(post)}
</py:for>
</div>
</body>
</html>