Make “follow”, “unfollow”, “block” and “unblock” buttons dynamic.
[Sone.git] / src / main / resources / templates / include / viewSone.html
index b12de4a..f2c51f7 100644 (file)
        <div class="short-request-uri"><% sone.requestUri|substring start=4 length=43|html></div>
        <%ifnull ! currentSone>
                <%if ! sone.current>
-                       <%if sone.friend>
-                               <form class="unfollow" action="unfollowSone.html" method="post">
-                                       <input type="hidden" name="formPassword" value="<% formPassword|html>" />
-                                       <input type="hidden" name="sone" value="<% sone.id|html>" />
-                                       <input type="hidden" name="returnPage" value="<% request.uri|html>" />
-                                       <button type="submit"><%= View.Sone.Button.UnfollowSone|l10n|html></button>
-                               </form>
-                       <%else>
-                               <form class="follow" action="followSone.html" method="post">
-                                       <input type="hidden" name="formPassword" value="<% formPassword|html>" />
-                                       <input type="hidden" name="sone" value="<% sone.id|html>" />
-                                       <input type="hidden" name="returnPage" value="<% request.uri|html>" />
-                                       <button type="submit"><%= View.Sone.Button.FollowSone|l10n|html></button>
-                               </form>
-                       <%/if>
-                       <%if sone.blocked>
-                               <form class="unblock" action="unblockSone.html" method="post">
-                                       <input type="hidden" name="formPassword" value="<% formPassword|html>" />
-                                       <input type="hidden" name="sone" value="<% sone.id|html>" />
-                                       <input type="hidden" name="returnPage" value="<% request.uri|html>" />
-                                       <button type="submit"><%= View.Sone.Button.UnblockSone|l10n|html></button>
-                               </form>
-                       <%else>
-                               <form class="block" action="blockSone.html" method="post">
-                                       <input type="hidden" name="formPassword" value="<% formPassword|html>" />
-                                       <input type="hidden" name="sone" value="<% sone.id|html>" />
-                                       <input type="hidden" name="returnPage" value="<% request.uri|html>" />
-                                       <button type="submit"><%= View.Sone.Button.BlockSone|l10n|html></button>
-                               </form>
-                       <%/if>
+                       <form class="unfollow<%if ! sone.friend> hidden<%/if>" action="unfollowSone.html" method="post">
+                               <input type="hidden" name="formPassword" value="<% formPassword|html>" />
+                               <input type="hidden" name="sone" value="<% sone.id|html>" />
+                               <input type="hidden" name="returnPage" value="<% request.uri|html>" />
+                               <button type="submit"><%= View.Sone.Button.UnfollowSone|l10n|html></button>
+                       </form>
+                       <form class="follow<%if sone.friend> hidden<%/if>" action="followSone.html" method="post">
+                               <input type="hidden" name="formPassword" value="<% formPassword|html>" />
+                               <input type="hidden" name="sone" value="<% sone.id|html>" />
+                               <input type="hidden" name="returnPage" value="<% request.uri|html>" />
+                               <button type="submit"><%= View.Sone.Button.FollowSone|l10n|html></button>
+                       </form>
+                       <form class="unblock<%if ! sone.blocked> hidden<%/if>" action="unblockSone.html" method="post">
+                               <input type="hidden" name="formPassword" value="<% formPassword|html>" />
+                               <input type="hidden" name="sone" value="<% sone.id|html>" />
+                               <input type="hidden" name="returnPage" value="<% request.uri|html>" />
+                               <button type="submit"><%= View.Sone.Button.UnblockSone|l10n|html></button>
+                       </form>
+                       <form class="block<%if sone.blocked> hidden<%/if>" action="blockSone.html" method="post">
+                               <input type="hidden" name="formPassword" value="<% formPassword|html>" />
+                               <input type="hidden" name="sone" value="<% sone.id|html>" />
+                               <input type="hidden" name="returnPage" value="<% request.uri|html>" />
+                               <button type="submit"><%= View.Sone.Button.BlockSone|l10n|html></button>
+                       </form>
                <%/if>
        <%/if>
        <div class="spacer">&nbsp;</div>