📄 assets.jsp
字号:
<!--
- Author: Jorg Janke
- Version: $Id: assets.jsp,v 1.7 2003/05/04 06:48:23 jjanke Exp $
- Compiere ERP & CRM Smart Business Solution - Copyright (c) 1999-2003 Jorg Janke
- - -
- Web Store Assets
-->
<%@ page session="true" contentType="text/html; charset=iso-8859-1" errorPage="errorPage.jsp" %>
<%@ taglib uri="webStore.tld" prefix="cws" %>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt" %>
<c:if test='${empty webUser || !webUser.loggedIn}'>
<c:redirect url='loginServlet?ForwardTo=assets.jsp'/>
</c:if>
<html>
<head>
<%@ include file="/WEB-INF/jspf/head.jspf" %>
<title><c:out value='${ctx.name}'/> - Your Assets</title>
</head>
<body>
<%@ include file="/WEB-INF/jspf/header.jspf" %>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="130" align="left" valign="top">
<%@ include file="/WEB-INF/jspf/left.jspf" %></td>
<td><h1>Your Assets</h1>
<c:if test='${not empty info.info}'>
<p><b><c:out value='${info.message}'/></b></p>
</c:if>
<table width="100%" border="1" cellspacing="2" cellpadding="2">
<tr>
<th>Name</th>
<th>Description</th>
<th>Guarantee Date</th>
<th>Version</th>
<th>Deliveries</th>
<th>Download</th>
</tr>
<c:forEach items='${info.assets}' var='asset'>
<tr>
<td><c:out value='${asset.name}'/></td>
<td><c:out value='${asset.description}'/> </td>
<td><fmt:formatDate value='${asset.guaranteeDate}'/></td>
<td><c:out value='${asset.versionNo}'/> </td>
<td><c:out value='${asset.downloadName}'/> </td>
<td>
<c:if test='${asset.downloadable}'>
<a href="<c:out value='http://${ctx.context}/'/>assetServlet/<c:out value='${asset.downloadName}'/>.zip?Asset_ID=<c:out value='${asset.a_Asset_ID}'/>" target="_blank">
<img src="assetDownload.gif" alt="Download" width="24" height="24" border="0"></a>
</c:if>
<c:if test='${not asset.downloadable}'>
n/a
</c:if>
</td>
</tr>
</c:forEach>
</table>
<p> </p></td>
<td align="right" valign="top"> <%@ include file="/WEB-INF/jspf/right.jspf" %></td>
</tr>
</table>
<%@ include file="/WEB-INF/jspf/footer.jspf" %>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -