FAISP/src/main/resources/templates/translator/translatorCareerModal.html

63 lines
2.2 KiB
HTML
Raw Normal View History

2022-09-14 02:31:01 +00:00
<!DOCTYPE html>
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
<main class="pt-3">
<input type="hidden" name="_csrf_header" th:value="${_csrf.headerName}"/>
<input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}"/>
<div class="row mx-0">
<div class="col-12 card">
<div class="card-body">
<div class="row justify-content-start">
<h6>통역인이름</h6>
<div class="card">
<div class="card-body">
<div class="row">
<h5>해양경찰청 이력</h5>
<table class="table table-striped" id="categoryTable">
<thead>
<tr>
<th>연번</th>
<th>날짜</th>
<th>내용</th>
<th>비고</th>
</tr>
</thead>
<tbody class="overflow-scroll">
<tr class="historyInfoTr" >
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div class="row">
<h5>타기관 이력</h5>
<table class="table table-striped" id="categoryTable">
<thead>
<tr>
<th>연번</th>
<th>날짜</th>
<th>내용</th>
<th>비고</th>
</tr>
</thead>
<tbody class="overflow-scroll">
<tr class="historyInfoTr" >
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
</html>