JSTL fmt:formatDate 이 LocalDateTime 처리 불가하기 때문에 재처리 기능 추가
All checks were successful
Main-Build / build-and-push (push) Successful in 42s
All checks were successful
Main-Build / build-and-push (push) Successful in 42s
This commit is contained in:
@@ -129,9 +129,11 @@
|
||||
<tbody>
|
||||
<c:forEach var="list" items="${commentList }">
|
||||
<tr>
|
||||
<th class="left" colspan="3">
|
||||
등록자 : ${list.userNm } | 등록일시 : <fmt:formatDate value="${list.createDate }" pattern="yyyy.MM.dd hh:mm"/>
|
||||
<c:if test="${loginVO.name eq list.userNm }"> <a href="#" onclick="fn_egov_comment_delete('${list.brdReplySeq }', '${commentVO.parentUrl}');">[삭제]</a> </c:if>
|
||||
<th class="left" colspan="3">
|
||||
등록자 : ${list.userNm } | 등록일시 :
|
||||
<fmt:parseDate value="${list.createDate}" pattern="yyyy-MM-dd'T'HH:mm:ss" var="parsedCreateDate"/>
|
||||
<fmt:formatDate value="${parsedCreateDate}" pattern="yyyy.MM.dd HH:mm"/>
|
||||
<c:if test="${loginVO.name eq list.userNm }"> <a href="#" onclick="fn_egov_comment_delete('${list.brdReplySeq }', '${commentVO.parentUrl}');">[삭제]</a></c:if>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
Reference in New Issue
Block a user