1 |
<!-- |
2 |
* Copyright 2007-2014 Hippo B.V. (http://www.onehippo.com) |
3 |
* |
4 |
* Licensed under the Apache License, Version 2.0 (the "License"); |
5 |
* you may not use this file except in compliance with the License. |
6 |
* You may obtain a copy of the License at |
7 |
* |
8 |
* http://www.apache.org/licenses/LICENSE-2.0 |
9 |
* |
10 |
* Unless required by applicable law or agreed to in writing, software |
11 |
* distributed under the License is distributed on an "AS IS" BASIS, |
12 |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
13 |
* See the License for the specific language governing permissions and |
14 |
* limitations under the License. |
15 |
--> |
16 |
<html xmlns:wicket="http://wicket.apache.org/"> |
17 |
<wicket:panel> |
18 |
<form wicket:id="editor"> |
19 |
<h3 wicket:id="toggle-header-0">[UUID]</h3> |
20 |
<table class="editor-general-table" id="toggle-box-0" style="display:block;"> |
21 |
<tr> |
22 |
<td class="general-name">Path: </td> |
23 |
<td><span wicket:id="nodePath"/></td> |
24 |
</tr> |
25 |
<tr> |
26 |
<td class="general-name">Name: </td> |
27 |
<td><span wicket:id="name"/></td> |
28 |
</tr> |
29 |
<tr> |
30 |
<td class="general-name">UUID: </td> |
31 |
<td><span wicket:id="uuid"/></td> |
32 |
</tr> |
33 |
</table> |
34 |
<h3 wicket:id="toggle-header-1">[Types]</h3> |
35 |
<table class="editor-types-table" id="toggle-box-1" style="display:block;"> |
36 |
<tr class="type-primary"> |
37 |
<td class="type-name">Primary: </td> |
38 |
<td class="type-value"><span wicket:id="primarytype"/></td> |
39 |
</tr> |
40 |
<tr class="type-mixin"> |
41 |
<td class="type-name">Mixin: </td> |
42 |
<td class="type-value"><span wicket:id="types"/></td> |
43 |
</tr> |
44 |
</table> |
45 |
|
46 |
<h3 wicket:id="toggle-header-2">[Properties]</h3> |
47 |
<ul id="toggle-box-2" class="properties" style="display:block;"> |
48 |
<li wicket:id="namespaces"> |
49 |
<h4 wicket:id="toggle-namespace">[namespace]</h4> |
50 |
<ul wicket:id="propertiesContainer" style="display:block;" class="properties-group"> |
51 |
<li class="property" wicket:id="properties"> |
52 |
<span class="property-namespace" wicket:id="namespace">namespace</span><span class="property-name" wicket:id="name">Property name</span> |
53 |
|
54 |
<span wicket:id="type" class="property-type">Property type</span> |
55 |
<a wicket:id="delete"><img wicket:id="remove-icon" style="vertical-align: middle" width="16" height="16"/></a> |
56 |
<table class="property-value-container" width="100%"> |
57 |
<tr> |
58 |
<td width="100%"> |
59 |
<ul style="list-style: none"> |
60 |
<li class="property-value" wicket:id="values"> |
61 |
<span wicket:id="value"></span> |
62 |
<a class="property-value-remove" wicket:id="remove"><img wicket:id="remove-icon" style="" width="16" height="16"/></a> |
63 |
</li> |
64 |
</ul> |
65 |
</td> |
66 |
</tr> |
67 |
</table> |
68 |
<a class="property-add" wicket:id="add"><img wicket:id="add-icon" style="margin-top:-5px" width="16" height="16"/></a> |
69 |
</li> |
70 |
</ul> |
71 |
</li> |
72 |
</ul> |
73 |
<h3 wicket:id="toggle-header-3">[Mixin Types]</h3> |
74 |
<div class="mixin-types" id="toggle-box-3" style="display:block"> |
75 |
<div wicket:id="mixintypes"> |
76 |
<ul style="list-style: none;"> |
77 |
<li class="mixin-type" wicket:id="type"> |
78 |
<input type="checkbox" wicket:id="check"><span class="mixin-name" wicket:id="name">[mixin name]</span></input> |
79 |
</li> |
80 |
</ul> |
81 |
</div> |
82 |
</div> |
83 |
</form> |
84 |
</wicket:panel> |
85 |
</html> |