Show replies and reply posting form on index page.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 16 Oct 2010 00:36:52 +0000 (02:36 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 16 Oct 2010 00:36:52 +0000 (02:36 +0200)
src/main/resources/templates/index.html

index 9046406..c18a99d 100644 (file)
                                <div class="text"><% post.text|html></div>
                                <div class="time"><% post.time|date format="MMM d, yyyy, HH:mm:ss"></div>
                        </div>
+                       <%foreach post.replies reply>
+                               <div class="reply">
+                                       <div class="author"><a href="viewSone.html?sone=<% reply.sone.id>"><% reply.sone.niceName|html></a></div>
+                                       <div class="text"><% reply.text|html></div>
+                                       <div class="time"><% reply.time|date format="MMM d, yyyy, HH:mm:ss"></div>
+                               </div>
+                       <%/foreach>
+                       <div class="create-reply">
+                               <form method="post" action="createReply.html">
+                                       <input type="hidden" name="formPassword" value="<% formPassword|html>" />
+                                       <input type="hidden" name="post" value="<% post.id>" />
+                                       <input type="text" name="text" value="" />
+                                       <button type="submit">Post Reply</button>
+                               </form>
+                       </div>
                <%foreachelse>
                        <div><%= Page.Index.PostList.Text.NoPostYet|l10n|html></div>
                <%/foreach>