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/testSuiteSelect">
8
	<tr><td valign="top" align="right">
9
		<bean:message key="label.testSuite"/>:
10
	</td><td>
11
		<html:select property="selectedTestSuite">
12
			<html:options property="testSuites"/>
13
		</html:select>
14
	</td></tr>
15
	<tr><td>&nbsp;</td><td valign="top" align="left">
16
		<html:submit property="buttonAction">
17
			<bean:message key="label.edit"/>
18
		</html:submit>
19
	</td></tr>
20
	<tr><td>&nbsp;</td><td valign="top" align="left">
21
		<html:submit property="buttonAction">
22
			<bean:message key="label.delete"/>
23
		</html:submit>
24
	</td></tr>
25

    
26
	</html:form>
27

    
28
	<tr><td colspan=2><HR></td></tr>
29

    
30
	<html:form action="/config/validation/testSuiteNew">	
31
	<tr><td valign="top" align="right">
32
			<bean:message key="label.newName"/>:
33
		</td><td>
34
			<html:text property="newName" size="60"/>
35
	</td></tr>
36
	<tr><td>&nbsp;</td><td valign="top" align="left">
37
		<html:submit>
38
			<bean:message key="label.new"/>
39
		</html:submit>
40
	</td></tr>
41
	</html:form>
42
	
43

    
44
</table>
45
<table border="0">
46

    
(2-2/4)