Project

General

Profile

1
<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
2
<%@ taglib uri="/tags/struts-html" prefix="html" %>
3
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>
4

    
5
<table border=0>
6

    
7
	<html:form action="/config/validation/test">
8
	
9
	<tr><td valign="top" align="right">
10
		<bean:message key="label.currentTestSuite"/>:
11
	</td><td>
12
		<bean:write name="selectedTestSuite" property="name"/>
13
	</td></tr>
14
	
15
	<tr><td valign="top" align="right">
16
		<bean:message key="label.testName"/>:
17
	</td><td>
18
		<html:select property="selectedTest">
19
			<html:options property="tests"/>
20
		</html:select>
21
	</td></tr>
22
	<tr><td>&nbsp;</td><td valign="top" align="left">
23
		<html:submit property="buttonAction">
24
			<bean:message key="label.edit"/>
25
		</html:submit>
26
	</td></tr>
27
	<tr><td>&nbsp;</td><td valign="top" align="left">
28
		<html:submit property="buttonAction">
29
			<bean:message key="label.delete"/>
30
		</html:submit>
31
	</td></tr>
32
	<tr><td colspan=2><hr></td></tr>
33
	</html:form>
34
	
35
	<html:form action="/config/validation/testNew">
36
	<tr><td valign="top" align="right">
37
		<bean:message key="label.newName"/>:
38
	</td><td>
39
		<html:text property="newName" size="60"/>
40
	</td></tr>
41
	<tr><td valign="top" align="right">
42
		<bean:message key="label.plugInType"/>:
43
	</td><td>
44
		<html:select property="selectedPlugIn">
45
			<html:options property="plugIns"/>
46
		</html:select>
47
	</td></tr>
48
	<tr><td>&nbsp;</td><td valign="top" align="left">
49
		<html:submit>
50
			<bean:message key="label.new"/>
51
		</html:submit>
52
	</td></tr>
53
	</html:form>
54
	
55
	
56

    
57
</table>
(1-1/4)