--- a/ForgeWiki/forgewiki/templates/lib.html
+++ b/ForgeWiki/forgewiki/templates/lib.html
@@ -2,29 +2,30 @@
xmlns:py="http://genshi.edgewall.org/"
xmlns:xi="http://www.w3.org/2001/XInclude">
- <div py:def="navigation(page)">
- <a href="..">PluginRoot</a>
- <a href="edit">Edit Page</a>
- <a href="history">Page History</a>
- </div>
-
<py:def function="display_comment(comment)">
<div id="comment-${comment._id}">
- Posted by <em>${comment.author().display_name}</em> at ${comment.timestamp}
- <a py:if="c.user._id and comment.author_id==c.user._id"
- href="comments/$comment._id/delete">[X]</a>
- <br/>
- ${Markup(g.markdown.convert(comment.text))}
- <div style="padding-left: 10px; border-left: 1px solid grey">
+ <div class="forge_comment_body">
+ <div class="user_info">
+ <img src="/images/error.png" alt="icon" width="50" height="50"/>
+ <br/>
+ ${comment.author().display_name}
+ </div>
+ <a py:if="c.user._id and comment.author_id==c.user._id"
+ href="comments/$comment._id/delete">[X]</a>
+ <br/>
+ ${Markup(g.markdown.convert(comment.text))}
+ ${comment.posted_ago}
<div class="reply title-pane closed">
- <h3 class="title">Reply to ${comment.author().display_name}</h3>
+ <a class="title" href="#">Reply</a>
<div class="content">
<form method="post" action="comments/$comment._id/reply">
<textarea rows="4" cols="60" name="text"></textarea><br/>
- <input type="submit"/>
+ <input type="submit" value="Save Comment"/>
</form>
</div>
</div>
+ </div>
+ <div class="forge_comment_replies">
<py:for each="cc in comment.replies()">
${display_comment(cc)}
</py:for>