From 975b4b84bdcc602c17510da80cbe6c61992edb57 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Wed, 15 Dec 2010 08:26:16 +0100 Subject: [PATCH] Show trust values below avatars. --- src/main/resources/templates/include/viewPost.html | 6 ++++++ src/main/resources/templates/include/viewReply.html | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/src/main/resources/templates/include/viewPost.html b/src/main/resources/templates/include/viewPost.html index 1d938d1..8af0d08 100644 --- a/src/main/resources/templates/include/viewPost.html +++ b/src/main/resources/templates/include/viewPost.html @@ -3,6 +3,12 @@
Avatar Image + <%if !post.sone.current> +
+ <%ifnull !post.sone.trust.explicit><% post.sone.trust.explicit><%/if> + <%ifnull !post.sone.trust.implicit><% post.sone.trust.implicit><%/if> + <%ifnull !post.sone.trust.distance><% post.sone.trust.distance><%/if> + <%/if>
diff --git a/src/main/resources/templates/include/viewReply.html b/src/main/resources/templates/include/viewReply.html index d11aa5f..8b4c9ef 100644 --- a/src/main/resources/templates/include/viewReply.html +++ b/src/main/resources/templates/include/viewReply.html @@ -3,6 +3,12 @@
Avatar Image + <%if !reply.sone.current> +
+ <%ifnull !post.sone.trust.explicit><% post.sone.trust.explicit><%/if> + <%ifnull !post.sone.trust.implicit><% post.sone.trust.implicit><%/if> + <%ifnull !post.sone.trust.distance><% post.sone.trust.distance><%/if> + <%/if>
-- 2.7.4