1 <%include include/head.html>
3 <h1><%= Page.KnownSones.Page.Title|l10n|html></h1>
6 <%foreach knownSones sone>
8 <div class="profile-link"><a href="viewSone.html?sone=<% sone.id>" title="<% sone.requestUri|html>"><% sone.niceName|html></a></div>
9 <div class="last-update">(<%= View.Sone.Label.LastUpdate|l10n|html> <% sone.time|date format="MMM d, yyyy, HH:mm:ss">)</div>
10 <%ifnull ! currentSone>
12 <form class="unblock" action="unblockSone.html" method="post">
13 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
14 <input type="hidden" name="sone" value="<% sone.id>" />
15 <button type="submit"><%= View.Sone.Button.UnblockSone|l10n|html></button>
18 <form class="block" action="blockSone.html" method="post">
19 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
20 <input type="hidden" name="sone" value="<% sone.id>" />
21 <button type="submit"><%= View.Sone.Button.BlockSone|l10n|html></button>
27 <div><%= Page.KnownSones.Text.NoKnownSones|l10n|html></div>
31 <%include include/tail.html>