<!--Page-->
<div id="pages">
<c:choose>
<c:when test="${rolePage.currentPage==1}">
<a href="#">Previous page</a>
</c:when>
<c:otherwise>
<a href="findRole.do?currentPage=${rolePage.currentPage-1 }">Previous page</a>
</c:otherwise>
</c:choose>
<!-- Loop output page number -->
<c:forEach begin="1" end="${rolePage.totalPage}" var="i">
<!-- If it is the current page, there is a style, otherwise there is no style -->
<c:choose>
<c:when test="${i==rolePage.currentPage}">
<a href="findRole.do?currentPage=${i }" class="current_page">${i }</a>
</c:when>
<c:otherwise>
<a href="findRole.do?currentPage=${i }">${i }</a>
</c:otherwise>
</c:choose>
</c:forEach>
<c:choose>
<c:when test="${rolrPage.currentPage==rolePage.totalPage}">
<a href="#">Next page</a>
</c:when>
<c:otherwise>
<a href="findRole.do?currentPage=${rolePage.currentPage+1 }">Next page</a>
</c:otherwise>
</c:choose>
</div>
</form>
</div>