| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <%@ page language="java" contentType="text/html;charset=GBK" pageEncoding="GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <%@ taglib uri="http://fzywtx.com/jsp/yw/html" prefix="html" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=GBK">
- <title>Insert title here</title>
- <link href="liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
- <link href="${ pageContext.request.contextPath}/main.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="/shares/js/jquery-1.3.2.min.js"></script>
- <script type="text/javascript" src="/shares/js/constant.js"></script>
- <script type="text/javascript" src="/shares/js/common.js"></script>
-
- <script type="text/javascript">
- </script>
- </head>
- <body>
- <%@ include file="/include/button.jsp"%>
- <%@ include file="/include/message.jsp"%>
- <form method="post"></form>
- <%-- <div class="default_search">
- <ul class="list_search">
- <li class="title" style="width:90px">子系统管理:</li>
- <li class="text" style="width:110px"><input id="searchName" name="searchName" type="text" value="${searchName}"></li>
- </ul>
- <ul>
- <li class="search-button">
- <input class="l-button"
- onclick="searchRoom()" name="search" value="查询" type="button"></li>
- </ul>
- </div> --%>
- <div class="forum-container">
- <center>
- <Table border="0" cellspacing="1" cellpadding="0" class="line">
- <tr>
- <th width='150px'>系统名称</th>
- <th width='150px'>系统文件</th>
- <th width='220px'>发布时间</th>
- <th width='120px'>发布版本</th>
- <th width='150px'>开发人员</th>
- <th>描述</th>
- <th width='150px'>操作</th>
- </tr>
- <c:forEach items="${pluginModels}" var="pm">
- <tr>
- <td>${pm.name}</td>
- <td>${pm.pluginName}</td>
- <td>${pm.publishDate}</td>
- <td>${pm.version}</td>
- <td>${pm.author}</td>
- <td>${pm.desc}</td>
- <td>
-
- </td>
- </tr>
- </c:forEach>
- </Table>
- </center>
- </div>
- </div>
- </body>
- </html>
|