Move reply HTML code into own file.
[Sone.git] / src / main / resources / templates / include / viewPost.html
1 <a name="post-<% post.id|html>"></a>
2 <div id="<% post.id|html>" class="post<%if loop.last> last<%/if><%if post.new> new<%/if>">
3         <div class="avatar">
4                 <img src="/WoT/GetIdenticon?identity=<% post.sone.id|html>&amp;width=48&height=48" width="48" height="48" alt="Avatar Image" />
5         </div>
6         <div class="inner-part">
7                 <div>
8                         <div class="author profile-link"><a href="viewSone.html?sone=<% post.sone.id|html>"><% post.sone.niceName|html></a></div>
9                         <div class="text"><% post.text|html></div>
10                 </div>
11                 <div class="status-line">
12                         <div class="time"><a href="viewPost.html?post=<% post.id|html>"><% post.time|date format="MMM d, yyyy, HH:mm:ss"></a></div>
13                         <div class="likes<%if post.likes.size|match value=0> hidden<%/if>"><span title="<% post.likes.soneNames|html>">⬆<span class="like-count"><% post.likes.size></span></span></div>
14                         <%ifnull ! currentSone>
15                                 <form class="like<%if post.liked> hidden<%/if>" action="like.html" method="post">
16                                         <input type="hidden" name="formPassword" value="<% formPassword|html>" />
17                                         <input type="hidden" name="returnPage" value="<% request.uri|html>" />
18                                         <input type="hidden" name="type" value="post" />
19                                         <input type="hidden" name="post" value="<% post.id|html>" />
20                                         <button type="submit" value="1"><%= View.Post.LikeLink|l10n|html></button>
21                                 </form>
22                                 <form class="unlike<%if ! post.liked> hidden<%/if>" action="unlike.html" method="post">
23                                         <input type="hidden" name="formPassword" value="<% formPassword|html>" />
24                                         <input type="hidden" name="returnPage" value="<% request.uri|html>" />
25                                         <input type="hidden" name="type" value="post" />
26                                         <input type="hidden" name="post" value="<% post.id|html>" />
27                                         <button type="submit" value="1"><%= View.Post.UnlikeLink|l10n|html></button>
28                                 </form>
29                         <%/if>
30                         <%if post.sone.current>
31                                 <form class="delete" action="deletePost.html" method="post">
32                                         <input type="hidden" name="formPassword" value="<% formPassword|html>" />
33                                         <input type="hidden" name="returnPage" value="<% request.uri|html>" />
34                                         <input type="hidden" name="post" value="<% post.id|html>" />
35                                         <button type="submit"><%= View.Post.DeleteLink|l10n|html></button>
36                                 </form>
37                         <%/if>
38                 </div>
39                 <div class="replies">
40                         <%foreach post.replies reply>
41                                 <%include include/viewReply.html>
42                         <%/foreach>
43                         <%ifnull ! currentSone>
44                                 <div class="create-reply">
45                                         <form method="post" action="createReply.html">
46                                                 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
47                                                 <input type="hidden" name="returnPage" value="<% request.uri|html>" />
48                                                 <input type="hidden" name="post" value="<% post.id|html>" />
49                                                 <input type="text" class="reply-input" name="text" value="" />
50                                                 <button type="submit"><%= View.Post.SendReply|l10n|html></button>
51                                         </form>
52                                 </div>
53                         <%/if>
54                 </div>
55         </div>
56 </div>