Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / jsp / ss130_batch.notification / ibssUploadBatchNotificationConfirm.jsp @ 146:acbff7ec018d

History | View | Annotate | Download (1.83 KB)

1 0:ea666cc7880e hadi
<%@ taglib uri="/WEB-INF/tld/struts-html-el" prefix="htmlEL"%>
2
<%@ taglib uri="/WEB-INF/tld/struts-bean" prefix="bean"%>
3
<%@ taglib uri="/WEB-INF/tld/struts-logic-el" prefix="logicEL"%>
4
<%@ taglib uri="/WEB-INF/tld/c" prefix="c"%>
5
<%@page import="java.util.HashMap"%>
6
<c:set var="formBean" value="${batchNotificationUploadForm}"/>
7
8
<h3 class="title"><STRONG><bean:message key="si.batch.notify.confirm.header"/></STRONG></h3><br/>
9
<table class="stepTable">
10
	<tr>
11
		<td>&nbsp;</td>
12
		<td>
13
			<div id="steps">
14
				<span><bean:message key="general.title.steps" arg0="2" arg1="3" />
15
				</span>
16
			</div>
17
		</td>
18
	</tr>
19
</table>
20
<table id="errorTable">
21
	<tr>
22
		<td><span id="serverSideError" class="error"><jsp:include
23
					flush="true" page="/jsp/errorHandler.jsp"></jsp:include></span></td>
24
	</tr>
25
</table>
26
<table class="tabularForm">
27
	<tr><td colspan="3">&nbsp;</td></tr>
28
	<tr>
29
		<td width="10%">&nbsp;</td>
30
		<td>File name:</td>
31
		<td><c:choose>
32
			<c:when test="${not empty formBean.map.uploadFile.fileName}">
33
				<c:out value="${formBean.map.uploadFile.fileName}"/>
34
			</c:when>
35
			<c:otherwise>-</c:otherwise>
36
		</c:choose></td>
37
	</tr>
38
	<tr>
39
		<td width="10%">&nbsp;</td>
40
		<td>File size:</td>
41
		<td><c:choose>
42
			<c:when test="${not empty formBean.map.uploadFile.fileSize}">
43
				<c:out value="${formBean.map.uploadFile.fileSize}"/> Bytes
44
			</c:when>
45
			<c:otherwise>-</c:otherwise>
46
		</c:choose></td>
47
	</tr>
48
	<tr><td colspan="3">&nbsp;</td></tr>
49
</table>
50
<htmlEL:form action="/ss130/uploadBatchNotificationResult.do">
51
<div class="floatRight">
52
	<htmlEL:cancel property="action" onclick="overlay();">
53
		<bean:message key="general.button.back"/>
54
	</htmlEL:cancel>
55
	<htmlEL:submit property="action" onclick="overlay();">
56
		<bean:message key="general.button.confirm"/>
57
	</htmlEL:submit>
58
</div>
59
</htmlEL:form>