question_detail.html
<div class="d-flex justify-content-end">
<div th:if="${question.modifyDate != null}" class="badge bg-light text-dark p-2 text-start mx-3">
<div class="mb-2">modified at</div>
<div th:text="${#temporals.format(question.modifyDate, 'yyyy-MM-dd HH:mm')}"></div>
</div>
<div th:if="${answer.modifyDate != null}" class="badge bg-light text-dark p-2 text-start mx-3">
<div class="mb-2">modified at</div>
<div th:text="${#temporals.format(answer.modifyDate, 'yyyy-MM-dd HH:mm')}"></div>
</div>
modifyDate 의 값이 있으면
수정 일시 출력
'BACKEND > SpringBoot' 카테고리의 다른 글
h2 -> MySQL로 DB변경하기 (0) | 2023.11.13 |
---|---|
질문/답변 추천 기능 (0) | 2023.11.13 |
답변 삭제 (0) | 2023.11.13 |
답변 수정 (0) | 2023.11.13 |
질문 삭제 처리 (0) | 2023.11.10 |