Streamline adding Sones, remove “add Sone” from menu.
[Sone.git] / src / main / resources / templates / knownSones.html
1 <%include include/head.html>
2
3         <h1><%= Page.Index.AddSone.Title|l10n|html></h1>
4
5         <div><%= Page.Index.AddSone.Description|l10n|html></div>
6
7         <form action="addSone.html" method="post">
8                 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
9                 <input type="hidden" name="returnPage" value="<% request.url|html>" />
10                 <input id="addsone" type="text" name="request-uri" />
11                 <button type="submit"><%= Page.Index.AddSone.Button.Add|l10n|html></button>
12         </form>
13
14         <h1><%= Page.KnownSones.Page.Title|l10n|html></h1>
15
16         <div id="known-sones">
17                 <%foreach knownSones sone>
18                         <%include include/viewSone.html>
19                 <%foreachelse>
20                         <div><%= Page.KnownSones.Text.NoKnownSones|l10n|html></div>
21                 <%/foreach>
22         </div>
23
24 <%include include/tail.html>