summaryrefslogtreecommitdiff
path: root/WebRoot/page/systemManage/nodeGroupManage/node/showImportError.jsp
blob: 60ba4b3591aed88699c5e83f3960ae1bcd09ec73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<%@ page language="java" pageEncoding="UTF-8"%>
<%@include file="/common/taglib.jsp"%>

<%
	String path = request.getContextPath();
%>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
		<title>i18n_showErr.message.title_n81i</title>
		<link href="<c:url value='/css/nms.css'/>" rel="stylesheet"
			type="text/css" />
		<script type="text/javascript">
		  	function goBack(){
				document.form1.action="<%=path%>/nodeGroupManage/nodeManage.do?action=query";
				document.form1.submit();	
			}
		</script>
	</head>
	<body>
		<div class="middle_list">
			<!--中间部分右边开始-->
			<form action="" name="form1" id="form1" method="post">
				<input type="hidden" name="position" value="${position }" />
				<input type="hidden" name="nodeGroupId" value="${nodeGroupId }" />
				<input type="hidden" name="showStopNGroup" value="${showStopNGroup }" />
				<input type="hidden" name="isValid" value="${isValid }" />
				<table align="center" border="0" cellpadding="0"
					cellspacing="0" class="table1">
					<tr>
						<td height="30" class="color_7" colspan="6">
							<strong>i18n_showErr.text.title_n81i</strong>
						</td>
					</tr>
					<tr>
						<td class="color_1">
							i18n_showErr.text.nodeIp_n81i
						</td>
						<td class="color_1">
							i18n_showErr.text.nodeName_n81i
						</td>
						<td class="color_1">
							i18n_showErr.text.nodeDesc_n81i
						</td>
						<td class="color_1">
							i18n_showErr.text.nodeType_n81i
						</td>
						<td class="color_1">
							i18n_showErr.text.nodeState_n81i
						</td>
						<td class="color_7">
							i18n_showErr.text.showError_n81i
						</td>
					</tr>
					<c:forEach items="${errorList}" var="info">
						<tr>
							<td class="color_3">
								${info.nodeIp }
							</td>
							<td class="color_3">
								${info.nodeName }
							</td>
							<td class="color_3">
								${info.nodeDesc }
							</td>
							<td class="color_3">
								${info.nodeType }
							</td>
							<td class="color_3">
								${info.nodeState }
							</td>
							<td class="color_6">
								${info.showError }
							</td>
						</tr>
					</c:forEach>

					<tr>
						<td class="color_7" colspan="6">
							<input type="button" class=btn3_mouseout
								onmouseover="this.className='btn3_mouseover'"
								onmouseout="this.className='btn3_mouseout'"
								onmousedown="this.className='btn3_mousedown'"
								onmouseup="this.className='btn3_mouseup'" onclick="goBack()" value="i18n_showErr.button.back_n81i"/>
							&nbsp;
						</td>
					</tr>
				</table>
			</form>
			<!--中间部分右边结束-->
		</div>
	</body>
</html>