21a5ca0597bdeab83742db1a04c5c9eef27f4b43
[Sone.git] / src / main / resources / templates / notify / newReplyNotification.html
1 <div class="short-text hidden">
2         <%= Notification.NewReply.ShortText|l10n|html>
3         <a class="link" onclick="showNotificationDetails('<%notification.id|html>'); return false;"><%= Notification.ClickHereToRead|l10n|html></a>
4 </div>
5 <div class="text">
6         <form class="mark-as-read" action="markAsKnown.html" method="post">
7                 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
8                 <input type="hidden" name="returnPage" value="<% request.uri|html>" />
9                 <input type="hidden" name="type" value="reply" />
10                 <input type="hidden" name="id" value="<%foreach replies reply><% reply.id|html><%notlast> <%/notlast><%/foreach>" />
11                 <button type="submit" name="mark-read" value="true"><%= Notification.NewPost.Button.MarkRead|l10n|html></button>
12         </form>
13         <%= Notification.NewReply.Text|l10n|html>
14         <%foreach replies reply>
15                 <a class="link-<% reply.post.id|html>" href="viewPost.html?post=<% reply.post.id|html>"><% reply.sone.niceName|html></a><%notlast>,<%/notlast><%last>.<%/last>
16         <%/foreach>
17 </div>