66 lines
2.6 KiB
Plaintext
66 lines
2.6 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=utf-8"
|
|
pageEncoding="utf-8"%>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
|
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
|
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
|
<script src="../../../js/admin/history.js"></script>
|
|
|
|
<div class="section_title">
|
|
<!-- <p>지도사용 이력</p> -->
|
|
</div>
|
|
<div class="section_content">
|
|
<form:form commandName="UseHistorySearchVO" name="searchForm" action="/admin/history" method="get">
|
|
<div class="search_div">
|
|
<div class="search_menu"> </div>
|
|
<div class="search_keyword">
|
|
<select class="form-control search_selectbox" name="searchCondition">
|
|
<option <c:if test="${UseHistorySearchVO.searchCondition eq 'all'}"><c:out value="selected" /></c:if> value="all">통합검색</option>
|
|
<option <c:if test="${UseHistorySearchVO.searchCondition eq 'name'}"><c:out value="selected" /></c:if> value="name">이름</option>
|
|
<option <c:if test="${UseHistorySearchVO.searchCondition eq 'company'}"><c:out value="selected" /></c:if> value="company">소속</option>
|
|
<option <c:if test="${UseHistorySearchVO.searchCondition eq 'req_area'}"><c:out value="selected" /></c:if> value="req_area">위치</option>
|
|
</select>
|
|
<input type="text" class="form-control search_inputbox" name="searchKeyword" value="<c:out value='${UseHistorySearchVO.searchKeyword}' />" />
|
|
<input class="btn btn-outline-secondary" type="submit" value="검색" />
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<table class="list-table">
|
|
<thead>
|
|
<tr><th colspan="5">지도사용 이력</th></tr>
|
|
<tr>
|
|
<th>위치</th>
|
|
<th>소속</th>
|
|
<th>담당자</th>
|
|
<th>날짜</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<c:if test="${count >= 1}">
|
|
<c:forEach var="item" items="${useHistoryList}">
|
|
<tr>
|
|
<td><c:out value="${item.reqArea}" /></td>
|
|
<td><c:out value="${item.company}" /></td>
|
|
<td><c:out value="${item.name}" /></td>
|
|
<td class="td_date"><c:out value="${item.logDate}" /></td>
|
|
</tr>
|
|
</c:forEach>
|
|
</c:if>
|
|
<c:if test="${count == 0}">
|
|
<tr><td colspan="5">요청한 목록이 없습니다.</td></tr>
|
|
</c:if>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="text-page">
|
|
<nav aria-label="Page navigation">
|
|
<ul class="pagination justify-content-center">
|
|
<ui:pagination paginationInfo="${paginationInfo}" type="image" jsFunction="fn_link_page" />
|
|
<form:hidden path="pageIndex" />
|
|
</form:form>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</div>
|