File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
<%--
Class Name : IpFilePopup.jsp
Description : 파일 첨부 팝업 화면
Modification Information
수정일 수정자 수정내용
------- -------- ---------------------------
2018.06.11 ITN 최초 생성
author : ITN
since : 2018.06.11
--%>
<%@ 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="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Language" content="ko">
<link href="<c:url value='/'/>css/jstree/themes/default/style.min.css" rel="stylesheet" type="text/css">
<title>자산관리</title>
<script type="text/javaScript" language="javascript">
</script>
<table>
<tr>
<th>부서</th>
<td>${ipVO.ipDeptText}</td>
</tr>
<tr>
<th>성명</th>
<td>${ipVO.ipUserName}</td>
</tr>
<tr>
<th>직위</th>
<td>${ipVO.ipManager}</td>
</tr>
<tr>
<th>IP주소</th>
<td>${ipVO.ipAddr}</td>
</tr>
<tr>
<th>위치</th>
<td>${ipVO.ipLoc}</td>
</tr>
<tr>
<th>랜선번호</th>
<td>${ipVO.ipLanNum}</td>
</tr>
<tr>
<th>사용여부</th>
<td>
<c:forEach var="result" items="${ipUseCodeList}" varStatus="status">
<c:if test="${ipVO.ipUseCode eq result.id}">
${result.text}
</c:if>
</c:forEach>
</td>
</tr>
<tr>
<th>등록일자</th>
<td>${ipVO.frstRegistPnttm}</td>
</tr>
</table>
</body>
</html>