Group management implemented on the admin page.
[photos] / src / main / java / org / wamblee / photos / wicket / AdminPage.html
index 173e1a2a350fcf3ac86934fba66d2de54eefc7cc..4a1ce899c2e45f6f9d8937f416f30aa3d423f33e 100644 (file)
 
 <wicket:extend>
 
+
+    <div id="admin">
+        <h1>Groups</h1>
+
+
+        <table>
+            <tr>
+                <th>Group</th>
+                <th>Action</th>
+            </tr>
+            <tr wicket:id="groupDelete">
+                <td><span wicket:id="groupName">groupname</span></td>
+                <td><a href="#" wicket:id="groupDelete">delete</a></td>
+            </tr>
+        </table>
+        <form method="post" wicket:id="groupCreate">
+            <table>
+                <tr>
+                    <td><input type="text" wicket:id="groupName" value=""/></td>
+                    <td><input type="submit" value="Create Group"/></td>
+                </tr>
+            </table>
+        </form>
+
+    </div>
 </wicket:extend>
 
 </body>