1 <div id="<% reply.id|html>" class="reply<%if reply.new> new<%/if>">
2 <a name="reply-<% reply.id|html>"></a>
3 <div class="reply-time hidden"><% reply.time|html></div>
4 <div class="reply-author hidden"><% reply.sone.id|html></div>
6 <img src="/WoT/GetIdenticon?identity=<% reply.sone.id|html>&width=36&height=36" width="36" height="36" alt="Avatar Image" />
8 <div class="inner-part">
10 <div class="author profile-link"><a href="viewSone.html?sone=<% reply.sone.id|html>"><% reply.sone.niceName|html></a></div>
11 <div class="text"><% reply.text|parse sone=reply.sone></div>
13 <div class="reply-status-line status-line">
14 <div class="time"><% reply.time|date format="MMM d, yyyy, HH:mm:ss"></div>
15 <div class="likes<%if reply.likes.size|match value=0> hidden<%/if>">
16 <span class='separator'>·</span>
17 <span title="<% reply.likes.soneNames|html>">↑<span class="like-count"><% reply.likes.size></span></span>
19 <%ifnull ! currentSone>
20 <span class='separator'>·</span>
21 <form class="like like-reply<%if reply.liked> hidden<%/if>" action="like.html" method="post">
22 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
23 <input type="hidden" name="returnPage" value="<% request.uri|html>" />
24 <input type="hidden" name="type" value="reply" />
25 <input type="hidden" name="reply" value="<% reply.id|html>" />
26 <button type="submit" value="1"><%= View.Post.LikeLink|l10n|html></button>
28 <form class="unlike unlike-reply<%if ! reply.liked> hidden<%/if>" action="unlike.html" method="post">
29 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
30 <input type="hidden" name="returnPage" value="<% request.uri|html>" />
31 <input type="hidden" name="type" value="reply" />
32 <input type="hidden" name="reply" value="<% reply.id|html>" />
33 <button type="submit" value="1"><%= View.Post.UnlikeLink|l10n|html></button>
35 <%if !reply.sone.current>
36 <span class='separator'>·</span>
37 <form class="trust reply-trust<%if reply.sone.trust.assigned> hidden<%/if>" action="trust.html" method="post">
38 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
39 <input type="hidden" name="returnPage" value="<% request.uri|html>" />
40 <input type="hidden" name="sone" value="<% reply.sone.id|html>" />
41 <button type="submit" title="<%= View.Trust.Tooltip.Trust|l10n|html>">✓</button>
43 <form class="distrust reply-distrust<%if reply.sone.trust.assigned> hidden<%/if>" action="distrust.html" method="post">
44 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
45 <input type="hidden" name="returnPage" value="<% request.uri|html>" />
46 <input type="hidden" name="sone" value="<% reply.sone.id|html>" />
47 <button type="submit" title="<%= View.Trust.Tooltip.Distrust|l10n|html>">✗</button>
49 <form class="untrust reply-untrust<%if !reply.sone.trust.assigned> hidden<%/if>" action="untrust.html" method="post">
50 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
51 <input type="hidden" name="returnPage" value="<% request.uri|html>" />
52 <input type="hidden" name="sone" value="<% reply.sone.id|html>" />
53 <button type="submit" title="<%= View.Trust.Tooltip.Untrust|l10n|html>">↶</button>
57 <%if reply.sone.local>
58 <span class='separator'>·</span>
59 <form class="delete delete-reply" action="deleteReply.html" method="post">
60 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
61 <input type="hidden" name="returnPage" value="<% request.uri|html>" />
62 <input type="hidden" name="reply" value="<% reply.id|html>" />
63 <button type="submit"><%= View.Post.Reply.DeleteLink|l10n|html></button>