From d71e8718a32c7053b352ba6d76100c24ecbeacea Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Sat, 16 Oct 2010 11:48:29 +0200 Subject: [PATCH] Show replies to posts in remote Sone. --- src/main/resources/templates/viewSone.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/main/resources/templates/viewSone.html b/src/main/resources/templates/viewSone.html index 8d308a1..a7686c9 100644 --- a/src/main/resources/templates/viewSone.html +++ b/src/main/resources/templates/viewSone.html @@ -27,6 +27,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.ViewSone.PostList.Text.NoPostYet|l10n|html>
<%/foreach> -- 2.7.4