kcgFileManager/src/main/resources/templates/admin/categoryMgt.html

105 lines
3.4 KiB
HTML

<!DOCTYPE html>
<html lang="ko"
xmlns:th="http://www.thymeleaf.org"
xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity5"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{layout/layout}">
<th:block layout:fragment="script">
<script type="text/javascript" th:src="@{/js/admin/categoryMgt.js}"></script>
</th:block>
<div layout:fragment="content">
<main class="pt-3">
<h4>게시판 분류 관리</h4>
<div class="row mx-0">
<div class="col-auto card text-center">
<div class="card-body">
<div class="row justify-content-end">
<input type="button" class="col-auto btn btn-primary mx-3" value="저장">
</div>
<div class="row justify-content-start">
<div class="col-auto m-3 p-3 border">
<table class="table table-striped">
<thead>
<tr>
<th></th>
<th>대분류</th>
</tr>
</thead>
<tbody id="depth1Category">
</tbody>
</table>
<div class="row justify-content-end">
<div class="col-auto">
<input type="button" class="btn btn-success addCategoryBtn" value="추가" data-depth="1">
</div>
</div>
</div>
<div class="col-auto m-3 p-3 border">
<table class="table table-striped">
<thead>
<tr>
<th></th>
<th>연도</th>
</tr>
</thead>
<tbody id="depth2Category">
</tbody>
</table>
<div class="row justify-content-end">
<div class="col-auto">
<input type="button" class="btn btn-success addCategoryBtn" value="추가" data-depth="2">
</div>
</div>
</div>
<div class="col-auto m-3 p-3 border">
<table class="table table-striped">
<thead>
<tr>
<th></th>
<th>중분류</th>
</tr>
</thead>
<tbody id="depth3Category">
</tbody>
</table>
<div class="row justify-content-end">
<div class="col-auto">
<input type="button" class="btn btn-success addCategoryBtn" value="추가" data-depth="3">
</div>
</div>
</div>
<div class="col-auto m-3 p-3 border">
<table class="table table-striped">
<thead>
<tr>
<th></th>
<th>소분류</th>
</tr>
</thead>
<tbody id="depth4Category">
</tbody>
</table>
<div class="row justify-content-end">
<div class="col-auto">
<input type="button" class="btn btn-success addCategoryBtn" value="추가" data-depth="4">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<div style="display: none;">
<table>
<tbody id="appendTr">
<tr>
<td colspan="2">
<input type="text" class="form-control">
</td>
</tr>
</tbody>
</table>
</div>
</div>
</html>