fix pager name

This commit is contained in:
Kaoru FUZITA 2015-12-01 17:18:19 +09:00
parent 0f413d664a
commit 35246b0a94
5 changed files with 15 additions and 15 deletions

View file

@ -37,7 +37,7 @@
<la:errors />
</div>
<%-- List --%>
<c:if test="${boostDocumentRulePager.allRecordCount == 0}">
<c:if test="${boostDocPager.allRecordCount == 0}">
<div class="row top10">
<div class="col-sm-12">
<i class="fa fa-info-circle text-light-blue"></i>
@ -45,7 +45,7 @@
</div>
</div>
</c:if>
<c:if test="${boostDocumentRulePager.allRecordCount > 0}">
<c:if test="${boostDocPager.allRecordCount > 0}">
<div class="row">
<div class="col-sm-12">
<table class="table table-bordered table-striped">
@ -67,7 +67,7 @@
</table>
</div>
</div>
<c:set var="pager" value="${boostDocumentRulePager}"
<c:set var="pager" value="${boostDocPager}"
scope="request" />
<c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp" />
</c:if>

View file

@ -44,7 +44,7 @@
<la:errors />
</div>
<%-- List --%>
<c:if test="${fileAuthenticationPager.allRecordCount == 0}">
<c:if test="${fileAuthPager.allRecordCount == 0}">
<div class="row top10">
<div class="col-sm-12">
<i class="fa fa-info-circle text-light-blue"></i>
@ -52,7 +52,7 @@
</div>
</div>
</c:if>
<c:if test="${fileAuthenticationPager.allRecordCount > 0}">
<c:if test="${fileAuthPager.allRecordCount > 0}">
<table class="table table-bordered table-striped">
<thead>
<tr>
@ -79,7 +79,7 @@
</c:forEach>
</tbody>
</table>
<c:set var="pager" value="${fileAuthenticationPager}"
<c:set var="pager" value="${fileAuthPager}"
scope="request" />
<c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp" />
</c:if>

View file

@ -37,7 +37,7 @@
<la:errors />
</div>
<%-- List --%>
<c:if test="${pathMappingPager.allRecordCount == 0}">
<c:if test="${pathMapPager.allRecordCount == 0}">
<div class="row top10">
<div class="col-sm-12">
<i class="fa fa-info-circle text-light-blue"></i>
@ -45,7 +45,7 @@
</div>
</div>
</c:if>
<c:if test="${pathMappingPager.allRecordCount > 0}">
<c:if test="${pathMapPager.allRecordCount > 0}">
<div class="row">
<div class="col-sm-12">
<table class="table table-bordered table-striped">
@ -68,7 +68,7 @@
</table>
</div>
</div>
<c:set var="pager" value="${pathMappingPager}" scope="request" />
<c:set var="pager" value="${pathMapPager}" scope="request" />
<c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp" />
</c:if>
</div>

View file

@ -43,7 +43,7 @@
<la:errors />
</div>
<%-- List --%>
<c:if test="${requestHeaderPager.allRecordCount == 0}">
<c:if test="${reqHeaderPager.allRecordCount == 0}">
<div class="row top10">
<div class="col-sm-12">
<i class="fa fa-info-circle text-light-blue"></i>
@ -51,7 +51,7 @@
</div>
</div>
</c:if>
<c:if test="${requestHeaderPager.allRecordCount > 0}">
<c:if test="${reqHeaderPager.allRecordCount > 0}">
<table class="table table-bordered table-striped">
<thead>
<tr>
@ -71,7 +71,7 @@
</c:forEach>
</tbody>
</table>
<c:set var="pager" value="${requestHeaderPager}"
<c:set var="pager" value="${reqHeaderPager}"
scope="request" />
<c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp" />
</c:if>

View file

@ -44,7 +44,7 @@
<la:errors />
</div>
<%-- List --%>
<c:if test="${webAuthenticationPager.allRecordCount == 0}">
<c:if test="${webAuthPager.allRecordCount == 0}">
<div class="row top10">
<div class="col-sm-12">
<i class="fa fa-info-circle text-light-blue"></i>
@ -52,7 +52,7 @@
</div>
</div>
</c:if>
<c:if test="${webAuthenticationPager.allRecordCount > 0}">
<c:if test="${webAuthPager.allRecordCount > 0}">
<table class="table table-bordered table-striped">
<thead>
<tr>
@ -79,7 +79,7 @@
</c:forEach>
</tbody>
</table>
<c:set var="pager" value="${webAuthenticationPager}"
<c:set var="pager" value="${webAuthPager}"
scope="request" />
<c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp" />
</c:if>