4a1ce899c2e45f6f9d8937f416f30aa3d423f33e
[photos] / src / main / java / org / wamblee / photos / wicket / AdminPage.html
1 <html
2         xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd">
3 <head>
4     <title>Wicket Quickstart Archetype Homepage</title>
5 </head>
6 <body>
7 <strong>Wicket Quickstart Archetype Homepage</strong>
8 <br/>
9 <br/>
10
11 <wicket:extend>
12
13
14     <div id="admin">
15         <h1>Groups</h1>
16
17
18         <table>
19             <tr>
20                 <th>Group</th>
21                 <th>Action</th>
22             </tr>
23             <tr wicket:id="groupDelete">
24                 <td><span wicket:id="groupName">groupname</span></td>
25                 <td><a href="#" wicket:id="groupDelete">delete</a></td>
26             </tr>
27         </table>
28         <form method="post" wicket:id="groupCreate">
29             <table>
30                 <tr>
31                     <td><input type="text" wicket:id="groupName" value=""/></td>
32                     <td><input type="submit" value="Create Group"/></td>
33                 </tr>
34             </table>
35         </form>
36
37     </div>
38 </wicket:extend>
39
40 </body>
41 </html>