blob: 667097e0f0d14bf3e9fec7fde4fa429ebfeef048 [file] [log] [blame]
<!--
~ Copyright (c) 2013-2014, JoshuaTree Software. All rights reserved.
-->
<html xmlns:wicket="http://wicket.apache.org/">
<body>
<wicket:panel>
<form wicket:id="editFields">
<fieldset>
<legend>Detail Operations</legend>
<input type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only"
wicket:id="add"
value="add"/>
<input type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only"
wicket:id="commit" value="commit"/>
<input type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only"
wicket:id="delete" value="delete"/>
<input type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only"
wicket:id="cancel" value="clear"/>
</fieldset>
<div>
<table id="inputFormTable">
<h3><span wicket:id="ouAssignmentsLabel" id="ouAssignmentsLabel"/></h3>
<tr>
<td>
<label for="name">Name</label>
</td>
<td>
<input type="text" wicket:id="name" id="name" class="formLarge" style="width: 250px"/>
</td>
</tr>
<tr>
<td>
<label for="description">Description</label>
</td>
<td>
<input type="text" wicket:id="description" id="description" class="formLarge" style="width: 250px"/>
</td>
</tr>
<tr>
<td>
<label for="parents">Parents</label>
</td>
<td>
<input type="text" wicket:id="parents" style="width: 250px"/>
<button wicket:id="parents.search" name="parents.search">search</button>
<div wicket:id="ouparentsmodal"></div>
<button wicket:id="parents.delete" name="parents.delete">remove</button>
</td>
</tr>
<tr>
<td>
<label for="id">Internal ID</label>
</td>
<td>
<span wicket:id="id"></span>
</td>
</tr>
</table>
</div>
</form>
</wicket:panel>
</body>
</html>