blob: fd6c7e0fc1f0104c90755ac9276dbf8424135eb5 [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="sdAssignmentsLabel" id="sdAssignmentsLabel"/></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="cardinality">Cardinality</label>
</td>
<td>
<input wicket:id="cardinality" type="text" style="width: 35px;"></input>
</td>
</tr>
<tr>
<td>
<label for="members">Members</label>
</td>
<td>
<input type="text" wicket:id="members" style="width: 250px"/>
<button wicket:id="roles.search" name="roles.search">search</button>
<div wicket:id="rolesmodal"></div>
<button wicket:id="members.delete" name="members.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>