From: David ‘Bombe’ Roden Date: Wed, 15 Dec 2010 07:26:16 +0000 (+0100) Subject: Show trust values below avatars. X-Git-Tag: 0.4^2~8^2~52 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=975b4b84bdcc602c17510da80cbe6c61992edb57 Show trust values below avatars. --- 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>