87 lines
4.1 KiB
HTML
87 lines
4.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="affairEditModalLabel" th:text="${affair.affairKey eq null?'월간 계획 작성':'월간 계획 수정'}"></h5>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
<div class="modal-body" id="affairEditBody">
|
|
<form action="#" method="post" id="affairEditForm">
|
|
<input type="hidden" name="_csrf_header" th:value="${_csrf.headerName}"/>
|
|
<input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}"/>
|
|
<input type="hidden" name="affairKey" th:value="${affair.affairKey}">
|
|
<input type="hidden" name="wrtOrgan" th:value="${affair.wrtOrgan}">
|
|
<input type="hidden" name="wrtPart" th:value="${affair.wrtPart}">
|
|
<input type="hidden" name="wrtUserSeq" th:value="${affair.wrtUserSeq}">
|
|
<input type="hidden" name="affairStatus" id="affairStatus" th:value="${affair.affairStatus}">
|
|
<div class="mb-3 row">
|
|
<label for="wrtUserNm" class="col-sm-1 col-form-label text-center">작성자</label>
|
|
<div class="col-sm-2">
|
|
<input type="text" class="form-control" id="wrtUserNm" name="wrtUserNm" th:value="${affair.wrtUserNm}" readonly>
|
|
</div>
|
|
<label for="wrtDt" class="col-sm-1 col-form-label text-center">작성일시</label>
|
|
<div class="col-sm-2">
|
|
<input type="text" class="form-control" id="wrtDt" name="wrtDt" th:value="${#temporals.format(affair.wrtDt, 'yyyy-MM-dd HH:mm')}" readonly>
|
|
</div>
|
|
</div>
|
|
<div class="mb-3 row">
|
|
<label for="wrtUserNm" class="col-sm-1 col-form-label text-center">분야1</label>
|
|
<div class="col-sm-2">
|
|
<select class="form-select form-select-sm">
|
|
|
|
</select>
|
|
</div>
|
|
<label for="wrtDt" class="col-sm-1 col-form-label text-center">분야2</label>
|
|
<div class="col-sm-2">
|
|
<select class="form-select form-select-sm">
|
|
|
|
</select>
|
|
</div>
|
|
<label for="wrtUserNm" class="col-sm-1 col-form-label text-center">분야3</label>
|
|
<div class="col-sm-2">
|
|
<select class="form-select form-select-sm">
|
|
|
|
</select>
|
|
</div>
|
|
<label for="wrtDt" class="col-sm-1 col-form-label text-center">분야4</label>
|
|
<div class="col-sm-2">
|
|
<select class="form-select form-select-sm">
|
|
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="mb-3 row">
|
|
<label for="title" class="col-sm-1 col-form-label text-center">제목</label>
|
|
<div class="col-sm-11">
|
|
<input type="text" class="form-control" id="title" name="title" th:value="${affair.title}">
|
|
</div>
|
|
</div>
|
|
<div class="mb-3 row">
|
|
<label for="title" class="col-sm-1 col-form-label text-center">내용</label>
|
|
<div class="col-sm-11">
|
|
<textarea id="content" name="content" th:value="${affair.content}"></textarea>
|
|
</div>
|
|
</div>
|
|
<div class="row mb-3">
|
|
<label for="fileInputer" class="col-sm-1 col-form-label text-center">업로드<br>자료</label>
|
|
<div class="col-sm-11" style="min-height: 70px;">
|
|
<div class="w-100 h-100 border border-info rounded text-center" id="uploadDiv">
|
|
<th:block th:if="${#arrays.isEmpty(affair.fileList)}">
|
|
<br>파일을 업로드 해주세요.
|
|
</th:block>
|
|
<th:block th:unless="${#arrays.isEmpty(affair.fileList)}">
|
|
<div class='row-col-6' th:each="affairFile:${affair.fileList}">
|
|
<span th:data-fileseq="${affairFile.fileSeq}" th:text="|${affairFile.origNm}.${affairFile.fileExtn} ${affairFile.fileSize}|"></span>
|
|
<a href='#' class='uploadedFileDelete text-danger text-decoration-none'>삭제</a>
|
|
</div>
|
|
</th:block>
|
|
</div>
|
|
</div>
|
|
<input type="file" class="d-none" id="fileInputer" multiple>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">닫기</button>
|
|
<button type="button" class="btn btn-warning" id="saveTempBtn">임시저장</button>
|
|
<button type="button" class="btn btn-primary" id="saveAffairBtn">저장</button>
|
|
</div> |