From 284259bbc04105105abb089680ea538f2fb8709d Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Sat, 16 Oct 2010 02:36:52 +0200 Subject: [PATCH] Show replies and reply posting form on index page. --- src/main/resources/templates/index.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html index 9046406..c18a99d 100644 --- a/src/main/resources/templates/index.html +++ b/src/main/resources/templates/index.html @@ -33,6 +33,21 @@
<% post.text|html>
<% post.time|date format="MMM d, yyyy, HH:mm:ss">
+ <%foreach post.replies reply> +
+ +
<% reply.text|html>
+
<% reply.time|date format="MMM d, yyyy, HH:mm:ss">
+
+ <%/foreach> +
+
+ + + + +
+
<%foreachelse>
<%= Page.Index.PostList.Text.NoPostYet|l10n|html>
<%/foreach> -- 2.7.4