Add “this Sone follows” section to “view Sone.”
[Sone.git] / src / main / resources / templates / viewSone.html
index ab87a98..db6b2dd 100644 (file)
                                <div><%= Page.ViewSone.PostList.Text.NoPostYet|l10n|html></div>
                        <%/foreach>
                </div>
+               
+               <h1><%= Page.ViewSone.Following.Title|l10n|html></h1>
+               
+               <div id="following">
+                       <%foreach sone.friends friend>
+                               <%first>
+                                       <ul>
+                               <%/first>
+                                       <li><a href="viewSone.html?sone=<% friend.id>"><% friend.niceName|html></a> (<% friend.requestUri|html>)</li>
+                               <%last>
+                                       </ul>
+                               <%/last>
+                       <%foreachelse>
+                               <div><%= Page.ViewSone.Following.FollowingNone.Text|l10n|html></div>
+                       <%/foreach>
+               </div>
 
        <%/if>