1 <a name="reply-<% reply.id|html>"></a>
2 <div id="<% reply.id|html>" class="reply<%if reply.new> new<%/if>">
3 <div class="storage-time hidden"><% reply.time|html></div>
5 <img src="/WoT/GetIdenticon?identity=<% reply.sone.id|html>&width=36&height=36" width="36" height="36" alt="Avatar Image" />
7 <div class="inner-part">
9 <div class="author profile-link"><a href="viewSone.html?sone=<% reply.sone.id|html>"><% reply.sone.niceName|html></a></div>
10 <div class="text"><% reply.text|html></div>
12 <div class="status-line">
13 <div class="time"><% reply.time|date format="MMM d, yyyy, HH:mm:ss"></div>
14 <div class="likes<%if reply.likes.size|match value=0> hidden<%/if>"><span title="<% reply.likes.soneNames|html>">⬆<span class="like-count"><% reply.likes.size></span></span></div>
15 <%ifnull ! currentSone>
16 <form class="like like-reply<%if reply.liked> hidden<%/if>" action="like.html" method="post">
17 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
18 <input type="hidden" name="returnPage" value="<% request.uri|html>" />
19 <input type="hidden" name="type" value="reply" />
20 <input type="hidden" name="reply" value="<% reply.id|html>" />
21 <button type="submit" value="1"><%= View.Post.LikeLink|l10n|html></button>
23 <form class="unlike unlike-reply<%if ! reply.liked> hidden<%/if>" action="unlike.html" method="post">
24 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
25 <input type="hidden" name="returnPage" value="<% request.uri|html>" />
26 <input type="hidden" name="type" value="reply" />
27 <input type="hidden" name="reply" value="<% reply.id|html>" />
28 <button type="submit" value="1"><%= View.Post.UnlikeLink|l10n|html></button>
31 <%if reply.sone.current>
32 <form class="delete delete-reply" action="deleteReply.html" method="post">
33 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
34 <input type="hidden" name="returnPage" value="<% request.uri|html>" />
35 <input type="hidden" name="reply" value="<% reply.id|html>" />
36 <button type="submit"><%= View.Post.Reply.DeleteLink|l10n|html></button>