uploadDisplay.jsp
1.4 KB
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
<%@ include file="/common/taglibs.jsp"%>
<head>
<title><fmt:message key="display.title"/></title>
<meta name="menu" content="AdminMenu"/>
</head>
<div class="col-sm-10">
<h2><fmt:message key="display.heading"/></h2>
<p>Below is a list of attributes that were gathered in FileUploadController.java.</p>
<table class="table-striped" cellpadding="5">
<tr>
<th>Friendly Name:</th>
<td><c:out value="${friendlyName}"/></td>
</tr>
<tr>
<th>Filename:</th>
<td><c:out value="${fileName}"/></td>
</tr>
<tr>
<th>File content type:</th>
<td><c:out value="${contentType}"/></td>
</tr>
<tr>
<th>File size:</th>
<td><c:out value="${size}"/></td>
</tr>
<tr>
<th class="tallCell">File Location:</th>
<td>The file has been written to: <br />
<a href="<c:out value="${link}"/>"><c:out value="${location}" escapeXml="false"/></a>
</td>
</tr>
</table>
<div id="actions" class="form-group">
<a class="btn btn-primary" href="home" >
<i class="icon-ok icon-white"></i>
<fmt:message key="button.done"/>
</a>
<a class="btn btn-default" href="fileupload" >
<i class="icon-upload"></i>
Upload Another
</a>
</div>
</div>