first commit
This commit is contained in:
105
src/main/webapp/WEB-INF/jsp/cms/hmsBrdMng/HmsBrdMngDetail.jsp
Normal file
105
src/main/webapp/WEB-INF/jsp/cms/hmsBrdMng/HmsBrdMngDetail.jsp
Normal file
@@ -0,0 +1,105 @@
|
||||
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"
|
||||
%><%@ include file="/common/taglib.jsp"
|
||||
%><%
|
||||
/**
|
||||
* @Class Name : HmsBrdMngDetail.jsp
|
||||
* @Description : HmsBrdMng Detail 화면
|
||||
* @Modification Information
|
||||
*
|
||||
* @author 유병욱
|
||||
* @since 2013-11-01
|
||||
* @version 1.0
|
||||
* @see
|
||||
*
|
||||
* Copyright (C) All right reserved.
|
||||
*/
|
||||
%><script type="text/javascript" src="/js/cms/hmsBrdMng.js"></script>
|
||||
<form:form commandName="searchVO" id="detailForm" action="${searchVO.parentUrl}">
|
||||
<form:hidden path="bmode" />
|
||||
<form:hidden path="pageIndex" />
|
||||
<form:hidden path="brdMngSeq" />
|
||||
<form:hidden path="searchCondition" />
|
||||
<form:hidden path="searchKeyword" />
|
||||
</form:form>
|
||||
|
||||
<div class="contents">
|
||||
<table class="tbl_basic_view">
|
||||
<caption>상세</caption>
|
||||
<colgroup>
|
||||
<col style="width:15%">
|
||||
<col style="width:35%">
|
||||
<col style="width:15%">
|
||||
<col style="width:*">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">게시판번호</th>
|
||||
<td colspan="3" class="left">${hmsBrdMngVO.brdMngSeq}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">게시판이름</th>
|
||||
<td colspan="3" class="left">${hmsBrdMngVO.brdNm}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">게시판타입</th>
|
||||
<td colspan="3" class="left">${hmsBrdMngVO.brdType}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">생성자이름</th>
|
||||
<td colspan="3" class="left">${hmsBrdMngVO.writerNm}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">생성일</th>
|
||||
<td colspan="3" class="left">${hmsBrdMngVO.createDate}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">게시판스킨</th>
|
||||
<td colspan="3" class="left">${hmsBrdMngVO.brdSkin}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">에디터사용여부</th>
|
||||
<td colspan="3" class="left">${hmsBrdMngVO.editorFlag == 'Y' ? '사용' : '사용안함'}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">새글표시기간</th>
|
||||
<td colspan="3" class="left">${hmsBrdMngVO.showNewPost}일</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">최근게시물 표시여부</th>
|
||||
<td colspan="3" class="left"><c:if test="${hmsBrdMngVO.addNewPost == 'on'}">표시함</c:if><c:if test="${hmsBrdMngVO.addNewPost != 'on'}">표시안함</c:if></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">작성시간표시</th>
|
||||
<td colspan="3" class="left"><c:if test="${hmsBrdMngVO.showWriteTime == 'on'}">표시함</c:if><c:if test="${hmsBrdMngVO.showWriteTime != 'on'}">표시안함</c:if></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">게시판관리자(아이디)</th>
|
||||
<td colspan="3" class="left">${hmsBrdMngVO.manager}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">제목길이</th>
|
||||
<td colspan="3" class="left">${hmsBrdMngVO.titleLength}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">카테고리</th>
|
||||
<td colspan="3" class="left">${hmsBrdCateMastVO.cateMastNm}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">첨부파일갯수</th>
|
||||
<td colspan="3" class="left">${hmsBrdMngVO.atchCnt}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">첨부파일 확장자</th>
|
||||
<td colspan="3" class="left">${hmsBrdMngVO.atchWhite}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="mt10 tR">
|
||||
<c:if test="${checkWriteAuth}">
|
||||
<span class="btn_type_blue"><a href="#modify" onclick="return fn_egov_updateView();">수정</a></span>
|
||||
<span class="btn_type_blue"><a href="#delete" onclick="return fn_egov_delete('${searchVO.parentUrl}');">삭제</a></span>
|
||||
</c:if>
|
||||
<span class="btn_type_gray"><a href="#list" onclick="return fn_egov_selectList();">목록</a></span>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user