plugins.jsp 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <%@ page language="java" contentType="text/html;charset=GBK" pageEncoding="GBK"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  3. <%@ taglib uri="http://fzywtx.com/jsp/yw/html" prefix="html" %>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  5. <html>
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=GBK">
  8. <title>Insert title here</title>
  9. <link href="liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
  10. <link href="${ pageContext.request.contextPath}/main.css" rel="stylesheet" type="text/css" />
  11. <script type="text/javascript" src="/shares/js/jquery-1.3.2.min.js"></script>
  12. <script type="text/javascript" src="/shares/js/constant.js"></script>
  13. <script type="text/javascript" src="/shares/js/common.js"></script>
  14. <script type="text/javascript">
  15. </script>
  16. </head>
  17. <body>
  18. <%@ include file="/include/button.jsp"%>
  19. <%@ include file="/include/message.jsp"%>
  20. <form method="post"></form>
  21. <%-- <div class="default_search">
  22. <ul class="list_search">
  23. <li class="title" style="width:90px">子系统管理:</li>
  24. <li class="text" style="width:110px"><input id="searchName" name="searchName" type="text" value="${searchName}"></li>
  25. </ul>
  26. <ul>
  27. <li class="search-button">
  28. <input class="l-button"
  29. onclick="searchRoom()" name="search" value="查询" type="button"></li>
  30. </ul>
  31. </div> --%>
  32. <div class="forum-container">
  33. <center>
  34. <Table border="0" cellspacing="1" cellpadding="0" class="line">
  35. <tr>
  36. <th width='150px'>系统名称</th>
  37. <th width='150px'>系统文件</th>
  38. <th width='220px'>发布时间</th>
  39. <th width='120px'>发布版本</th>
  40. <th width='150px'>开发人员</th>
  41. <th>描述</th>
  42. <th width='150px'>操作</th>
  43. </tr>
  44. <c:forEach items="${pluginModels}" var="pm">
  45. <tr>
  46. <td>${pm.name}</td>
  47. <td>${pm.pluginName}</td>
  48. <td>${pm.publishDate}</td>
  49. <td>${pm.version}</td>
  50. <td>${pm.author}</td>
  51. <td>${pm.desc}</td>
  52. <td>
  53.  
  54. </td>
  55. </tr>
  56. </c:forEach>
  57. </Table>
  58. </center>
  59. </div>
  60. </div>
  61. </body>
  62. </html>