Full admin page functionality is working.
[photos] / src / main / java / org / wamblee / photos / wicket / AdminPage.html
index 5567558e0fa67a3cc77fac6b7d413525b9703dc0..ccd9907cfd6c7ce39994a682c147715fb24c9183 100644 (file)
 
         <h2>Add user to group</h2>
 
+        <form wicket:id="userToGroupForm">
+            <table>
+                <tr>
+                    <th>User</th>
+                    <td>
+                        <select wicket:id="userChoice">
+                            <option>user1</option>
+                            <option>user2</option>
+                        </select>
+                    </td>
+                </tr>
+                <tr>
+                    <th>Group</th>
+                    <td>
+                        <select wicket:id="groupChoice">
+                            <option>group1</option>
+                            <option>group2</option>
+                        </select>
+                    </td>
+                </tr>
+                <tr>
+                    <th></th>
+                    <th><input type="submit" value="Add user to group"/></th>
+                </tr>
+            </table>
+        </form>
+
+
     </div>
 </wicket:extend>