geoinfo_admin/src/main/webapp/WEB-INF/views/admins/constructionProjectManagement/03.jsp

38 lines
1.5 KiB
Plaintext

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" HREF="${pageContext.request.contextPath}/css/admins/style.css" type="text/css">
</head>
<body>
<table id="Table_Main" width="100%" border="0" cellpadding="0" cellspacing="0">
<tr><td colspan=2><img src="${pageContext.request.contextPath}/images/admins/userLog/2_toptit_03.gif"></td></tr>
<tr height=20><td colspan=2>&nbsp;</td></tr>
<tr height=12><td colspan=2><img src="${pageContext.request.contextPath}/images/admins/spacer.gif" width="1" height="12"></td></tr>
<tr>
<td colspan=2>
<table id="Table_List" width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#C9C9C9">
<tr height=28 bgcolor="#F5F5F5" class="list_head" align="center">
<td width="50%">사용자 그룹</td>
<td width="50%">등 록 수</td>
</tr>
<!-- REPEAT TABLE-->
<c:forEach items="${resultList}" var="resultList" varStatus="status">
<tr height=28 bgcolor="#FFFFFF" class="list_content" align="center">
<td>${resultList.name}</td>
<td>${resultList.cnt}</td>
</tr>
</c:forEach>
<!-- END OF REPEAT TABLE-->
</table>
</td>
</tr>
</table>
</body>
</html>